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

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

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

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

/* Main Offer Block */
#main-offer {
    min-height: 400px;
    padding: 4rem 2rem;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#main-offer h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

#main-offer h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.cta-button:hover {
    background: transparent;
    color: #d4af37;
}

/* Products Section */
#products {
    padding: 4rem 2rem;
    background: #fff;
}

.product {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
}

/* Article Styling */
article {
    margin-top: 4rem;
    padding: 2rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
}

article h2 {
    color: #d4af37;
}

/* Specialists Section */
#specialists {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.specialist {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Reviews Section */
#reviews {
    padding: 4rem 2rem;
    background: #fff;
}

.review {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #d4af37;
    border-radius: 0 8px 8px 0;
}

/* Subscription Form */
#subscription-form {
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

button[type="submit"] {
    padding: 1rem 2rem;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: #c19b2e;
}

/* Contacts Section */
#contacts {
    padding: 4rem 2rem;
    background: #fff;
}

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

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    #main-offer {
        padding: 2rem 1rem;
    }

    #main-offer h1 {
        font-size: 2.5rem;
    }

    #main-offer h2 {
        font-size: 1.5rem;
    }

    .product, .specialist, .review {
        margin: 1rem;
        padding: 1rem;
    }

    article {
        margin: 2rem 1rem;
        padding: 1rem;
    }

    #subscription-form {
        padding: 2rem 1rem;
    }

    input[type="email"], button[type="submit"] {
        width: 100%;
    }

    #contacts {
        padding: 2rem 1rem;
    }

    iframe {
        height: 300px;
    }
}

/* Section Headers Styling */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

#subscription-form h2, #main-offer h2 {
    color: #fff;
}
