/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

/* Variables */
:root {
    --primary: #00b4d8;
    --secondary: #ef233c;
    --accent: #ffd700;
    --dark: #2b2d42;
    --light: #edf2f4;
    --background: #ffffff;
    --azerbaijan-blue: #0098da;
    --azerbaijan-red: #ef3340;
    --azerbaijan-green: #509e2f;
}

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

body {
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3 {
    font-family: 'Crimson Pro', serif;
    margin-bottom: 1rem;
}

section {
    padding: 4rem 2rem;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23509e2f' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-color: var(--azerbaijan-blue);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--azerbaijan-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ff3d4a;
}

/* Products Section */
#products {
    background-color: var(--background);
}

.product {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price {
    color: var(--azerbaijan-red);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* Health Article */
.health-article {
    background-color: var(--light);
    padding: 2rem;
    margin-top: 3rem;
    border-left: 5px solid var(--azerbaijan-green);
    border-radius: 0 10px 10px 0;
}

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

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

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

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

/* Specialists Section */
#specialists {
    background-color: var(--light);
}

.specialist {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
#reviews {
    background-color: var(--azerbaijan-blue);
    color: white;
}

.review {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    position: relative;
}

.review cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
}

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

address {
    margin-bottom: 2rem;
    font-style: normal;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

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

    section {
        padding: 2rem 1rem;
    }

    .product, .specialist, .review {
        padding: 1.5rem;
    }

    .health-article {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}

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

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

    .price {
        font-size: 1.2rem;
    }
}

/* Alternating Section Colors */
section:nth-child(even) {
    background-color: var(--light);
}

section:nth-child(odd) {
    background-color: var(--background);
}
