/* 1. Убираем все отступы и границы по умолчанию */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Наследуем шрифт для форм */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 3. Убираем маркеры списков */
ul,
ol {
    list-style: none;
}

/* 4. Обнуляем ссылки */
a {
    text-decoration: none;
    color: inherit;
}

/* 5. Снимаем оформление у заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* 6. Устанавливаем базовый стиль для body */
body {
    line-height: 1.5;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* 7. Сброс для изображений */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 8. Убираем фокус-стили (если нужны — добавим отдельно) */
:focus {
    outline: none;
}


/*конец блока normalize reset*/

* {
    font-family: 'Roboto Condensed', sans-serif;
}


.container {
    max-width: 1160px;
    margin: 0 auto;
}

.offer-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.offer-breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
    margin-top: 20px;
}

.offer-breadcrumbs a {
    text-decoration: none;
    color: #888;
}

.offer-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.offer-intro {
    margin-bottom: 30px;
}

.offer-subtitle {
    font-size: 22px;
    margin: 30px 0 15px;
}

.offer-text {
    margin-bottom: 20px;
}

.offer-accordion {
    border-top: 1px solid #ccc;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    display: none;
    padding: 0 0 16px 0;
}

.accordion-item.open .accordion-body {
    display: block;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.accordion-item.open .chevron-icon {
    transform: rotate(180deg);
}

.terms-list dl {
    margin: 16px 0;
}

.terms-list dt {
    font-weight: 500;
    margin-top: 12px;
}

.terms-list dd {
    margin-left: 0;
    margin-bottom: 8px;
}

.terms-list a {
    color: #3366cc;
    text-decoration: underline;
}

.terms-block p {
    margin-bottom: 16px;
}

.sublist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sublist li {
    margin-bottom: 8px;
    padding-left: 0;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.payment-block {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.payment-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.payment-block h3 span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.payment-block p {
    margin-bottom: 12px;
}

.payment-block ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.payment-block ul li {
    margin-bottom: 6px;
}

.terms-block h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    font-weight: 500;
}


@media (max-width: 1279px) {
    .container {
        max-width: 944px;
        margin: 0 auto;
    }
}

@media (max-width: 1023px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 96%;
        margin: 0 auto;

        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .container {
        max-width: 96%;
        margin: 0 auto;

        font-size: 14px;
    }
}


