
```css
/* styles.css – Оформление сайта Trust Finance в стиле поддержки украинских беженцев */
/* Максимальная ширина: 1090px, центрирование, без Google Fonts, мобильная адаптация */

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

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Контейнер для центрирования */
.container {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === БЛОКИ С КОНТРАСТНЫМИ ЦВЕТАМИ === */
/* Цветовая палитра: жёлто-голубая (символика Украины) + нейтральные акценты */

.section {
    padding: 50px 0;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

/* Блок 1: Оферта – жёлтый фон (солнечный, надежда) */
.oferta {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1a1a1a;
    min-height: 470px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.oferta h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.oferta p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.oferta .btn-primary {
    display: inline-block;
    background: #0057B7; /* глубокий украинский синий */
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 87, 183, 0.4);
    margin-top: 20px;
}

.oferta .btn-primary:hover {
    background: #003D80;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 61, 128, 0.5);
}

/* Остальные блоки – чередование голубого и белого */
.opinie,
.edukacja,
.newsletter,
.specjalisci,
.produkty,
.zostaw-opinie,
.adres {
    background-color: #E3F2FD; /* светлый голубой */
    color: #1a1a1a;
}

.oferta ~ .section:nth-child(odd) {
    background-color: white;
    border: 1px solid #BBDEFB;
}

.oferta ~ .section:nth-child(even) {
    background-color: #BBDEFB;
}

/* === ЗАГОЛОВКИ === */
h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #0057B7;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* === СТАТЬЯ – ВЫДЕЛЕНИЕ === */
.produkty h2:nth-of-type(2) {
    margin-top: 50px;
    color: #D81B60;
    font-size: 1.9rem;
}

.produkty p {
    background: rgba(255, 255, 255, 0.85);
    padding: 16px;
    border-left: 5px solid #FFD700;
    margin: 14px 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.02rem;
}

.produkty ul.product-list {
    list-style: none;
    margin: 30px 0;
}

.produkty ul.product-list li {
    background: white;
    padding: 14px 18px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #BBDEFB;
    font-weight: 500;
    color: #1565C0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === ФОРМЫ === */
form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0;
    border: 2px solid #90CAF9;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0057B7;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button,
.btn-primary {
    background: #0057B7;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 87, 183, 0.3);
    margin-top: 10px;
}

button:hover,
.btn-primary:hover {
    background: #003D80;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 61, 128, 0.4);
}

/* === СПЕЦИАЛИСТЫ И ОТЗЫВЫ === */
.specialist,
.review {
    background: white;
    padding: 20px;
    border-radius: 14px;
    margin: 16px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border-left: 4px solid #FFD700;
}

.specialist h3,
.review p:first-child {
    color: #0057B7;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.review p:last-child {
    font-style: italic;
    color: #424242;
}

/* === КАРТА === */
.adres iframe {
    border-radius: 16px;
    border: 3px solid #0057B7;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* === ФУТЕР === */
.footer {
    background: #0D47A1;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-radius: 16px 16px 0 0;
    font-size: 0.95rem;
}

.footer p {
    max-width: 800px;
    margin: 0 auto;
}

.domainName {
    font-weight: bold;
    color: #FFD700;
}

/* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .oferta {
        min-height: 400px;
        padding: 40px 15px;
    }

    .oferta h1 {
        font-size: 2rem;
    }

    .oferta p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .section {
        padding: 35px 0;
        border-radius: 12px;
    }

    form {
        max-width: 100%;
        padding: 0 10px;
    }

    input[type="email"],
    input[type="text"],
    textarea,
    button,
    .btn-primary {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .specialist,
    .review {
        padding: 16px;
        margin: 12px 0;
    }

    .product-list li {
        font-size: 0.95rem;
        padding: 12px 14px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .oferta .btn-primary,
    button {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }
}
