/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Playfair+Display:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Header/Offer Block */
header {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1564890369478-c89ca6d9cde9');
    /* This image shows a calming composition of hibiscus tea, which is known for its potential benefits for blood pressure */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #f5f5f5);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Rest of the CSS remains exactly the same as in the previous version */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #C41E3A;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #C41E3A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Sections Common Styles */
section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-family: 'Playfair Display', serif;
    color: #1E5945;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Article Styling */
article {
    background-color: #F8F6F1;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 5px solid #1E5945;
}

article h3 {
    color: #1E5945;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Form Styling */
form {
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #1E5945;
    border-radius: 5px;
    font-size: 1rem;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: #1E5945;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #164332;
}

/* Lists Styling */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #F8F6F1;
    border-radius: 5px;
    transition: all 0.3s ease;
}

ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Products Section */
#products ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #F8F6F1;
    border-left: 4px solid #1E5945;
}

/* Reviews Section */
#reviews ul li {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

#reviews ul li::before {
    content: '"';
    font-size: 3rem;
    color: #1E5945;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2;
}

/* Specialists Section */
#specialists ul li {
    text-align: center;
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}

/* Contact Section */
#contacts {
    background-color: #F8F6F1;
}

#contacts p {
    text-align: center;
    margin-bottom: 1rem;
}

iframe {
    border-radius: 10px;
    margin: 2rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1E5945;
    color: white;
    border-radius: 10px 10px 0 0;
}

/* Decorative Elements */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #1E5945, transparent);
    margin: 3rem 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    header {
        min-height: 300px;
        padding: 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    article {
        padding: 1rem;
    }

    ul li {
        padding: 0.8rem;
    }

    #products ul li {
        flex-direction: column;
        text-align: center;
    }

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

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

    section h2 {
        font-size: 1.5rem;
    }

    form {
        padding: 0 1rem;
    }
}