/* Основные стили */
body {
    font-family: 'Lato', sans-serif;
    margin: 0 auto;
    max-width: 1180px;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Шрифты из Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* Блок с оффером */
#offer {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

#offer h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

#offer p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#offer .button {
    background-color: #fff;
    color: #ff7e5f;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#offer .button:hover {
    background-color: #ff7e5f;
    color: #fff;
}

/* Форма */
#form {
    background-color: #e0f7fa;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

#form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00796b;
}

#form input[type="email"] {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #00796b;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 1rem;
}

#form button {
    background-color: #00796b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#form button:hover {
    background-color: #004d40;
}

/* Продукты и цены */
#products {
    background-color: #fff3e0;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

#products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e65100;
}

#products ul {
    list-style-type: none;
    padding: 0;
}

#products ul li {
    background-color: #ffe0b2;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #e65100;
}

#products article {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#products article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e65100;
}

#products article p {
    font-size: 1rem;
    color: #333;
}

/* Наши специалисты */
#specialists {
    background-color: #f8bbd0;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

#specialists h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #c2185b;
}

#specialists ul {
    list-style-type: none;
    padding: 0;
}

#specialists ul li {
    background-color: #f48fb1;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #fff;
}

/* Отзывы */
#reviews {
    background-color: #d1c4e9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

#reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #512da8;
}

#reviews ul {
    list-style-type: none;
    padding: 0;
}

#reviews ul li {
    background-color: #b39ddb;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #fff;
}

/* Локация */
#location {
    background-color: #c8e6c9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

#location h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2e7d32;
}

#location p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2e7d32;
}

#location iframe {
    border: none;
    border-radius: 10px;
}

/* Футер */
footer {
    background-color: #b2dfdb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    color: #00796b;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Мобильная версия */
@media (max-width: 768px) {
    #offer h1 {
        font-size: 2rem;
    }

    #offer p {
        font-size: 1rem;
    }

    #form input[type="email"] {
        width: 90%;
    }

    #products h2, #specialists h2, #reviews h2, #location h2 {
        font-size: 1.5rem;
    }

    #products ul li, #specialists ul li, #reviews ul li {
        font-size: 1rem;
    }
}
