body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #1b1411; /* КОРИЧНЕВЫЙ ФОН ВЕЗДЕ */
}

.content-overlay {
    width: 100%;
    background-color: transparent; /* ПРОЗРАЧНЫЙ, ЧТОБЫ БЫЛ ВИДЕН КОРИЧНЕВЫЙ */
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.offer-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 20px 0; /* ОТСТУПЫ ОТ КОРИЧНЕВОГО ФОНА */
}

.button-container {
    background-color: transparent;
    padding: 20px 0 40px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

h2 {
    color: #dd9f59; /* ИЗМЕНЕНО С #3498db */
    margin-top: 25px;
    margin-bottom: 15px;
}

h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background-color: #fffacd;
    padding: 15px;
    border-left: 4px solid #f1c40f;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    border-left: 4px solid #dd9f59; /* ИЗМЕНЕНО С #3498db */
}

.footer-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .offer-container {
        padding: 15px;
    }
}

/* Стили для контейнера */
.summary-block {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white; /* БЕЛЫЙ ФОН */
}

/* Стили для заголовка */
.summary-title {
    text-align: center;
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/* Стили для таблицы */
.terms-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Стили для заголовков таблицы */
.terms-summary-table th {
    background-color: #dd9f59; /* ИЗМЕНЕНО С #3498db */
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
}

/* Стили для строк таблицы */
.terms-summary-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

/* Чередование цветов строк */
.terms-summary-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Выделение строк при наведении */
.terms-summary-table tbody tr:hover {
    background-color: #f5e6d3; /* ИЗМЕНЕНО С #e8f5e9 - светло-оранжевый */
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .terms-summary-table, .terms-summary-table tbody, .terms-summary-table td, .terms-summary-table th, .terms-summary-table thead, .terms-summary-table tr {
        display: block;
    }

    .terms-summary-table thead {
        display: none;
    }

    .terms-summary-table tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .terms-summary-table td {
        border-bottom: 1px solid #ddd;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .terms-summary-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
}