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

/* Base Styles */
:root {
    --primary-color: #2B3990; /* Deep blue from Azerbaijan flag */
    --secondary-color: #00A651; /* Green for tea leaves */
    --accent-color: #ED1C24; /* Red from Azerbaijan flag */
    --text-color: #333333;
    --light-bg: #F5F7FA;
    --border-radius: 8px;
}

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

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

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Header/Offer Block */
header {
    min-height: 400px;
    background-image: url('https://img.freepik.com/free-vector/abstract-batik-pattern_23-2148994392.html');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(43, 57, 144, 0.9), rgba(0, 166, 81, 0.8));
    z-index: 1;
}

header > * {
    position: relative;
    z-index: 2;
}

header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Article Styling */
article {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

article h3 {
    color: var(--secondary-color);
}

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

ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

ul li:last-child {
    border-bottom: none;
}

/* Products Section */
#products ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
}

/* Reviews Section */
#reviews ul li {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Specialists Section */
#specialists ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: 4rem;
}

/* Contact Section */
#contacts iframe {
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

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

    header h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 1.5rem;
    }

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

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

    article {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    section {
        padding: 1rem;
    }

    #specialists ul li,
    #reviews ul li {
        padding: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}