/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* Общие стили */
body {
    max-width: 1180px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Блок 1: Оффер */
#offer {
    min-height: 430px;
    background: linear-gradient(135deg, #d32f2f 0%, #f57c00 100%); /* Градиент в тонах флага Варшавы */
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#offer h1 {
    font-family: 'Lora', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

#offer p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

#offer .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#offer .btn:hover {
    background-color: #f57c00;
    color: #fff;
}

/* Общие стили для секций */
section {
    padding: 50px 40px;
}

h2 {
    font-family: 'Lora', serif;
    font-size: 2em;
    margin-bottom: 30px;
}

/* Блок 2: Форма */
#subscribe {
    background-color: #f5f5f5;
    text-align: center;
}

#subscribe form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

#subscribe input[type="email"] {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 70%;
}

#subscribe button {
    padding: 12px 25px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#subscribe button:hover {
    background-color: #f57c00;
}

/* Блок 3: Продукты и статья */
#products {
    background-color: #fff;
}

#products ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

#products li {
    font-size: 1.1em;
    margin: 10px 0;
}

#products article {
    background-color: #f9e8e8;
    padding: 20px;
    border-left: 5px solid #d32f2f;
    margin-top: 30px;
}

/* Блок
