body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007BFF;
}

.hero {
    background: url('../images/hero_background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #0056b3;
}

.featured-products, .latest-video, .testimonials, .about {
    padding: 50px 20px;
    text-align: center;
}

.featured-products h2, .latest-video h2, .testimonials h2, .about h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.product-grid, .testimonial-carousel, .video-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product, .testimonial, .video-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product img, .video-item iframe {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product h3, .testimonial p, .video-item p {
    margin: 10px 0;
}

footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
}

.footer-links, .social-media, .contact-info {
    display: flex;
    justify-content: space-around;
}

.footer-links a, .contact-info p {
    margin: 0 10px;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}
