/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

/* Header Section */
header {
    background-color: #4CAF50;
    padding: 20px;
    color: white;
}

.logo {
    width: 180px;
    display: block;
    margin: 0 auto 10px;
}

/* Hero Section */
.hero {
    background: url('header.jpg') center/cover;
    padding: 80px 20px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 255, 1);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Shop Now Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: black;
    background: #00FA9A;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

.btn:hover {
    background: #FFC107;
}

/* Product Section */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background: white;
}

.products h2 {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 20px;
}

.product {
    background: #ffffff;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.highlight {
    font-weight: bold;
    color: #4CAF50;
}

/* Testimonials Section */
.testimonials {
    background: #f1f1f1;
    padding: 40px 20px;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonials p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
}

/* Contact Section */
.contact {
    background: white;
    padding: 40px 20px;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 15px;
    font-size: 0.9rem;
}