@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

section {
    padding: 4rem 2rem;
}

/* Block 1: Hero Section - Nestle Blue */
#hero {
    background: linear-gradient(135deg, #0066b3 0%, #004d8c 100%);
    color: #ffffff;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
}

#hero h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#hero p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    color: #f0f8ff;
}

.cta-button {
    display: inline-block;
    background-color: #e63946;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Reviews Section - Light Gray */
#reviews {
    background-color: #f5f5f5;
}

#reviews .review {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066b3;
    transition: transform 0.3s ease;
}

#reviews .review:hover {
    transform: translateX(8px);
}

#reviews h3 {
    color: #0066b3;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Specialists Section - Nestle Red */
#specialists {
    background: linear-gradient(135deg, #e63946 0%, #c92a35 100%);
    color: #ffffff;
}

#specialists h2 {
    color: #ffffff;
}

#specialists .specialist {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#specialists .specialist:hover {
    transform: scale(1.02);
}

#specialists .specialist h3 {
    color: #e63946;
}

/* Subscribe Section - White */
#subscribe {
    background-color: #ffffff;
    text-align: center;
}

#subscribe p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

#subscribe form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

#subscribe input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

#subscribe input[type="email"]:focus {
    border-color: #0066b3;
    box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
}

#subscribe button {
    padding: 1rem 2.5rem;
    background-color: #0066b3;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

#subscribe button:hover {
    background-color: #004d8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.3);
}

/* Products Section - Light Blue */
#products {
    background: linear-gradient(to bottom, #e8f4f8 0%, #d4ebf5 100%);
}

#products .product {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #0066b3;
}

#products .product:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

#products .product h3 {
    color: #0066b3;
    font-size: 1.5rem;
}

#products .product p {
    margin-bottom: 1rem;
    color: #555;
}

#products .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e63946;
    font-family: 'Poppins', sans-serif;
}

/* Article Styling */
.blog-article {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe9b3 100%);
    padding: 2.5rem;
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ff9800;
}

.blog-article h3 {
    color: #e65100;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.blog-article p {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* Contact Section - Dark Gray */
#contact {
    background-color: #2c3e50;
    color: #ffffff;
}

#contact h2 {
    color: #ffffff;
}

#contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#contact strong {
    color: #e63946;
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
    color: #bbb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    #hero {
        min-height: 380px;
        padding: 3rem 1.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    #subscribe form {
        flex-direction: column;
    }

    #subscribe input[type="email"] {
        min-width: 100%;
    }

    #subscribe button {
        width: 100%;
    }

    #products .product {
        padding: 1.5rem;
    }

    #products .price {
        font-size: 1.5rem;
    }

    .blog-article {
        padding: 1.8rem;
    }

    .blog-article h3 {
        font-size: 1.3rem;
    }

    .blog-article p {
        font-size: 0.95rem;
        text-align: left;
    }

    #reviews .review,
    #specialists .specialist {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    #hero {
        min-height: 350px;
        padding: 2.5rem 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    #products .price {
        font-size: 1.3rem;
    }

    .map-container iframe {
        height: 300px;
    }
}
