/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #fefefe;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a472a;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: inherit;
}

/* Block 1: Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    text-align: center;
    color: #1a472a;
    border-bottom: 3px solid #28a745;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

/* Block 2: Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.newsletter-section h2 {
    color: #495057;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #20c997;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    background: linear-gradient(135deg, #e83e8c, #6f42c1);
}

/* Block 3: Products Section */
.products-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 80px 0;
    color: #856404;
    border-bottom: 3px solid #ffc107;
}

.products-section h2 {
    color: #856404;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.product-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d39e00;
    margin-top: 1rem;
}

/* Article styling */
.article-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffc107;
}

.article-section h3 {
    color: #856404;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-section p {
    text-align: justify;
    color: #6c5ce7;
    font-size: 1rem;
    line-height: 1.7;
}

/* Block 4: Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    padding: 80px 0;
    color: #0277bd;
    border-bottom: 3px solid #03a9f4;
}

.specialists-section h2 {
    color: #0277bd;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialist-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialist-item:hover {
    transform: translateY(-5px);
}

.specialist-item h3 {
    color: #0277bd;
    margin-bottom: 1rem;
}

/* Block 5: Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 80px 0;
    color: #ad1457;
    border-bottom: 3px solid #e91e63;
}

.reviews-section h2 {
    color: #ad1457;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item p:first-child {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ad1457;
}

.reviewer {
    font-weight: 600;
    color: #880e4f;
    font-size: 0.9rem;
}

/* Block 6: Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 80px 0;
    color: #6a1b9a;
    border-bottom: 3px solid #9c27b0;
}

.contact-section h2 {
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Block 7: Footer */
.footer {
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #b0bec5;
    font-size: 0.9rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: 350px;
        padding: 40px 0;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .products-grid,
    .specialists-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-item,
    .specialist-item,
    .review-item {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }

    .article-section {
        padding: 25px;
        margin-top: 2rem;
    }

    .article-section p {
        text-align: left;
    }

    section {
        padding: 50px 0;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 300px;
        padding: 30px 0;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .product-item,
    .specialist-item,
    .review-item,
    .article-section {
        padding: 15px;
    }

    section {
        padding: 40px 0;
    }
}
