@font-face {
    font-family: 'BebasNeuePro-SemiExpXBold';
    src: url('BebasNeuePro-SemiExpXBold.ttf') format('truetype'); /* Ensure you have this font file in your project directory */
}
@font-face {
    font-family: 'BebasNeuePro-Regular';
    src: url('BebasNeuePro-Regular.ttf') format('truetype'); /* Ensure you have this font file in your project directory */
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('Montserrat-Regular.ttf') format('truetype'); /* Ensure you have this font file in your project directory */
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #4e403b; /* Здесь вы указываете нужный вам цвет */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.2'/></svg>");
    background-repeat: repeat;
    -webkit-font-smoothing: antialiased; /* Улучшает сглаживание на iOS */
    -moz-osx-font-smoothing: grayscale; /* Для macOS Firefox */
    text-rendering: optimizeLegibility; /* Оптимизация читаемости */
}
.bonus-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 95%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
    margin-bottom: 10px;
}

.lesson-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 95%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
    margin-bottom: 10px;
}

.timerfooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Чёрный с прозрачностью 50% */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
    gap: 20px;
}

.timer-container {
    display: flex;
    flex-direction: column; /* Меняем направление на вертикальное */
    align-items: center; /* Выравниваем по левому краю */
    gap: 5px; /* Уменьшаем отступ между текстом и таймером */
    flex: 1;
}

.timertext {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 20px;
    color: #f7f6ee;
    font-weight: 400;
}

.timer {
    font-family: BebasNeuePro-SemiExpXBold, sans-serif;
    font-size: 25px;
    color: #f7f6ee;
    font-weight: 700;
}
.buy-button5 {
    display: block;
    padding: 10px 20px;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #f7f6ee;
    text-decoration: none;
    border: 1px solid #f7f6ee;
    border-radius: 45px;
    transition: background-color 0.3s, color 0.3s;
    flex: 0.7; /* Занимает 50% ширины */
    text-align: center;
    background: linear-gradient(to right, #b7a092, #85706c); /* Градиент, как у кнопки */
}

.buy-button5:hover {
    color: #000000; /* Оставляем цвет текста при наведении */
}

.sale-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #161515;
    overflow: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.sale-top-text {
    color: #fff;
    font-size: 20px;
    font-family: BebasNeuePro-SemiExpXBold;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 30s linear infinite;
    position: absolute;
    /* Добавляем отступы между словами */
}

.sale-top-text span {
    margin-right: 30px; /* Отступ между словами, можно настроить */
}

.sale-top-text:nth-child(2) {
    animation: marquee2 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #4e403b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-gif {
    width: 100px; /* Укажи нужный размер */
    height: 100px; /* Укажи нужный размер */
}

.bonus {
    /* Общий контейнер (1) */
    display: flex;
    box-sizing: border-box;
    align-items: center;
    background-color: #f7f6ee; /* Цвет фона */
    border-radius: 15px; /* Скругления */
    padding: 10px;
    width: 90%;
    margin: 15px auto; /* Альтернативный способ центрирования */
    max-width: 800px;
}

.bonus-image {
    /* Круглый контейнер (2) */
    width: 80px;
    height: 80px;
    background-color: none; /* Тёмный фон */
    border-radius: 50%; /* Круг */
    overflow: hidden; /* Обрезает изображение */
    margin-right: 0px; /* Отступ от текста */
}

.bonus-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение заполняет круг */
    display: block; /* Убирает возможные отступы */
}

.bonus-text {
    /* Прямоугольный контейнер со скруглениями (3) */
    flex: 1;
    background-color: none; /* Цвет фона текста */
    border-radius: 10px;
    padding: 10px;
    color: #000000; /* Белый текст */
}

.bonus-text-header {
    font-family: BebasNeuePro-SemiExpXBold;
    font-size: 17px;
    margin: 0 0 5px 0;
}

.bonus-text-content {
    font-family: Montserrat-Regular;
    font-size: 14px;
    margin: 0;
}
.price-container {
    text-align: right;
    flex: 1 1 30%; /* Установлено 35% для горизонтального выравнивания */
    display: flex; /* Включаем flex внутри price-container */
    flex-direction: column; /* Выстраиваем содержимое по вертикали */
    justify-content: flex-end; /* Прижимаем к нижнему краю */
    align-items: flex-end; /* Прижимаем к правому краю */
}

.price-old {
    text-align: right;
    margin-bottom: 5px;
}

.price-old s {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
}

.price-old span {
    color: #fff;
    font-family: BebasNeuePro-SemiExpXBold, sans-serif;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    border-radius: 5px;
    background: #8b0000;
    padding: 2px 8px;
    display: inline-block;
}

.price-container p1 {
    font-family: BebasNeuePro-SemiExpXBold, sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400; /* Явно задаем вес */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4e403b; /* Здесь вы указываете нужный вам цвет */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.2'/></svg>");
    background-repeat: repeat;
    padding: 10px;
    height: 70px;
    padding-top: 30px; /* Отступ сверху, равный высоте ленты */
}

.logo-container {
    margin-top: 10px;
    margin-left: 10px;
    width: 165px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.navigation {
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.nav-link {
    color: white;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ddd;
}

.main-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.cover-container {
    border-radius: 0px;
    overflow: hidden;
    border: none;
    width: 100%;
    max-width: 800px;
    margin: 0px;
    display: flex;
}

.cover-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;    
}

.cover-image-pc {
    display: block;
    width: 100%;
    height: none;
    pointer-events: none;    
}

.course-info {
    padding: 10px;
}

.course-title {
    display: inline-block;
    text-align: center;
    position: relative;
    margin-left: 35px;
    margin-top: -30px;
    margin-bottom: -30px;
}

.pro {
    font-family: 'Brachetto-Regular';
    font-size: 70px;
    margin: 0 10px;
    margin-right: -15px; /* Отрицательный отступ для компактности */
    font-weight: normal;
    color: #a30000;
}

.stories {
    font-family: 'Soyuz';
    font-size: 70px;
    margin: 0 10px;
    color: #a30000;
}


.image-section {
    position: relative;
    height: 0;
    overflow: visible;
}

.image0 {
    background-image: url('images/plast.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
    top: -55px;
    width: 120px; /* Ширина изображения */
    height: 170px; /* Высота изображения */
    z-index: +1; /* Помещаем изображение под все элементы */
    display: none;
}


.course-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    padding: 0 10px;
}

.course-description p {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 14px;
    font-weight: 400; /* Явно задаем вес */
    flex: 1;
    margin-left: 5px;
    text-align: center;
    color:#f7f6ee;
}

.buy-button1 {
    display: block;
    padding: 10px 20px;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 20px;
    font-weight: 400; /* Явно задаем вес */
    color: #f7f6ee;
    text-decoration: none;
    border: 1px solid #f7f6ee;
    border-radius: 40px;
    transition: background-color 0.3s, color 0.3s;
    width: fit-content;
    background: linear-gradient(to right, #b7a092, #85706c);
}

.buy-button1:hover {
    background-color: #000;
    color: #000 ;
}

.target-audience {
    padding: 10px;
}

.section-title {
    font-family: BebasNeuePro-SemiExpXBold, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 36px;
    text-align: center;
    margin: 10px 10px;
    margin-top: 20px;
    color:#f7f6ee;
}

.section-title-last {
    font-family: BebasNeuePro-SemiExpXBold, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 26px;
    text-align: center;
    margin: 0 10px 20px;
    color:#f7f6ee;
}

.audience-container {
    margin: 0 10px 20px;
    height: 70px;
}

.audience-container h3 {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 20px;
    font-weight: 400; /* Явно задаем вес */
    margin: 0 0 10px;
    color:#f7f6ee;
}
.audience-container h4 {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 15px;
    font-weight: 400; /* Явно задаем вес */
    margin: 0 0 10px;
    color:#f7f6ee;
}

.audience-container p {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 15px;
    font-weight: 400; /* Явно задаем вес */
    margin: 0;
    color:#f7f6ee;
}


.course-slides {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.slides-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #000;
    width: 100%;
    max-width: 800px;
    margin: 10px;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    width: fit-content;
}

.slide-button {
    width: 30px;
    height: 30px;
    background-color: white;
    border: 2px solid black;
    border-radius: 50%;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: #ddd;
}


.course-program {
    margin-top: 10px;
    padding: 10px;
}

.accordion {
    width: calc(100% - 20px);
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.accordion-item {
    border-radius: 15px;
    margin: 10px 0;
    padding: 5px;
    background: #f7f6ee  
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.module-info p {
    margin: 0;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 20px;
    font-weight: 400; /* Явно задаем вес */
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.15s;
    user-select: none; /* Запрещает выделение текста */
}

.accordion-content {
    display: none;
    padding: 5px;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 16px;
    font-weight: 400; /* Явно задаем вес */
}
.about {
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f7f6ee;
    display: flex;
    flex-wrap: wrap; /* Разрешаем перенос на мобильных */
}

.about-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #40312f;
    width: 100%; /* Изображение занимает всю ширину */
    flex: 0 0 100%; /* Занимает 100% ширины */
    margin-bottom: 0; /* Убираем отступ, так как flex управляет */
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.about-description {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 20px;
    text-align: left;
    font-weight: 400;
    margin-bottom: 5px;
}

.about-description p {
    margin-bottom: -10px; /* Уменьшаем отступ между абзацами */
}


.tariff-container {
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f7f6ee;
    display: flex;
    flex-wrap: wrap; /* Разрешаем перенос на мобильных */
    gap: 0px; /* Отступы между элементами */
}

.tariff-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #40312f;
    width: 100%; /* Изображение занимает всю ширину */
    flex: 0 0 100%; /* Занимает 100% ширины */
    margin-bottom: 0; /* Убираем отступ, так как flex управляет */
}

.tariff-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

/* Контейнер для описания и цен */
.content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-end; /* Прижимаем содержимое к нижнему краю */
    align-items: flex-end; /* Прижимаем к правому краю */
}

.tariff-description {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 20px;
    text-align: left;
    font-weight: 400;
    flex: 1 1 50%; /* Занимает минимум 50%, растягивается */
    margin-bottom: 0; /* Убираем отступ, так как flex управляет */
}


.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: static; /* Ensure proper positioning */
    margin-top: 10px; /* Add top margin for separation from other elements */
}
.cases-container {
    border: 2px solid #000;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f6ee 
}

.case-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.case-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #000;
    width: 45%;
    margin-bottom: 30px;
}

.case-image {
    width: 100%;
    height: auto;
    display: block;
}

.case-link {
    display: block;
    text-align: center;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 30px;
    margin: 30px 0;
    color: #000;
    text-decoration: none;
    font-weight: 400; /* Явно задаем вес */
}

.case-link:hover {
    color: #444;
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.feedback-container {
    margin: 0; /* Убираем внешние отступы */
    padding: 0; /* Убираем внутренние отступы */
    border: none; /* Убираем границы */
    background: transparent; /* Убираем фон */
    width: 100%; /* Занимаем всю ширину */
    overflow: hidden; /* Скрываем лишнее */
}

.feedback-slider {
    width: 100vw; /* Используем ширину viewport */
    height: 400px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pinch-zoom;
    margin: 0; /* Убираем внешние отступы */
    padding: 0; /* Убираем внутренние отступы */
}

.feedback-slider::-webkit-scrollbar {
    display: none;
}

.feedback-track {
    display: flex;
    gap: 20px;
    padding: 0; /* Убираем padding для полной ширины */
    width: fit-content;
    height: 100%; /* Растягиваем на всю высоту .feedback-slider */
    align-items: center; /* Центрируем вертикально */
}

.feedback-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #40312f; /* Оставляем, если нужно */
    flex-shrink: 0;
    width: 322px; /* Относительно ширины окна */
    height: auto; /* Пусть высота подстраивается под aspect-ratio */
    max-width: 600px; /* Ограничение ширины слайда */
    aspect-ratio: 1/1; /* Сохраняем квадрат */
    margin-bottom: 10px; /* Убираем нижний отступ */
    margin-top: -10px;
}

.feedback-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}


.format-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 15px;
    text-align: left; /* Добавлено для выравнивания по левой стороне */
    background-color: none;
}

.course-format {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 17px;
    font-weight: 400; /* Явно задаем вес */
    margin-bottom: 40px;
    color:#f7f6ee;
}

.course-format p {
    margin: 10px 0;
}

.buy-button {
    display: block;
    padding: 10px 20px;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 20px;
    color: #f7f6ee;
    text-decoration: none;
    border: 1px solid #f7f6ee;
    border-radius: 45px;
    transition: background-color 0.3s, color 0.3s;
    margin: 0 auto 0px auto; /* Adjust bottom margin to provide space for slide buttons */
    width: fit-content;
    background: linear-gradient(to right, #b7a092, #85706c);
}

.buy-button:hover {
    background-color: #000;
    color: #000;
}

.buy-button3 {
    display: block;
    padding: 10px 20px;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 20px;
    color: #f7f6ee;
    text-decoration: none;
    border: 1px solid #f7f6ee;
    border-radius: 45px;
    transition: background-color 0.3s, color 0.3s;
    margin: 0 auto 30px auto; /* Adjust bottom margin to provide space for slide buttons */
    width: fit-content;
    background: linear-gradient(to right, #b7a092, #85706c);
}

.buy-button3:hover {
    background-color: #000;
    color: #000;
}


.faq-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px; /* Добавление паддинга для отступов по бокам */
    box-sizing: border-box;
}

.accordion {
    margin-top: 20px;
}

.accordion-item {
    border-radius: 15px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #f7f6ee 
}

.accordion-title {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 24px;
    font-weight: 400; /* Явно задаем вес */
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.15s;
}

.accordion-content {
    display: none;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.accordion-content.show {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 15px;
    font-weight: 400; /* Явно задаем вес */
    display: block;
}

.accordion-icon.rotate {
    transform: rotate(45deg);
}
.contacts-section {
    background-color: #222; /* Темно-серый фон */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.2'/></svg>");
    
    color: #fff; /* Белый текст */
    height: 200px; /* Высота секции */
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-title {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 36px;
    margin: 0 auto;
    font-weight: 400; /* Явно задаем вес */
}

.contacts-container {
    text-align: left;
}

.contact-link, .contact-text {
    display: block;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400; /* Явно задаем вес */
    font-size: 24px;
    width: fit-content;
    color: #fff;
    margin: 10px 0; /* Увеличение вертикальных отступов */
}

.contact-link {
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.footer {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 14px;
    text-align: center;
    font-weight: 400; /* Явно задаем вес */
}
    /* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media (min-width: 1729px) {
    .header {
        padding: 35px;
        height: 100px;
    }

    .logo-container {
        width: 400px;
    }

    .lesson-image-container {
        width: 100%;
    }

    .bonus-image-container {
        width: 100%;
    }
    
    .section-title-last {
        font-family: BebasNeuePro-SemiExpXBold, sans-serif;
        font-size: 32px;
        text-align: center;
        margin: 20px 20px;
        color:#f7f6ee;
    }

    .audience-container h4 {
        font-family: Montserrat-Regular, sans-serif;
        font-size: 20px;
        font-weight: 400; /* Явно задаем вес */
        margin: 10px;
        color:#f7f6ee;
        margin-left: 530px;
    }
    
    .buy-button3:hover {
        background-color: #000;
        color: #000;
    }
    
    .buy-button3 {
        display: block;
        padding: 10px 20px;
        font-family: BebasNeuePro-Regular, sans-serif;
        font-weight: 400; /* Явно задаем вес */
        font-size: 40px;
        color: #f7f6ee;
        text-decoration: none;
        border: 1px solid #f7f6ee;
        border-radius: 45px;
        transition: background-color 0.3s, color 0.3s;
        margin: 0 auto 30px auto; /* Adjust bottom margin to provide space for slide buttons */
        width: fit-content;
        background: linear-gradient(to right, #b7a092, #85706c);
    }

    .price-container p1 {
        font-family: BebasNeuePro-SemiExpXBold, sans-serif;
        font-size: 45px;
        margin-bottom: 40px;
    }
    .price-old s {
        font-size: 35px;
        font-weight: 400;
    }
    
    .price-old span {
        font-size: 40px;
        font-weight: 700;
    }
    .tariff-description {
        font-family: BebasNeuePro-Regular, sans-serif;
        font-size: 35px;
    }
    
    .bonus-text-header {
        font-family: BebasNeuePro-SemiExpXBold;
        font-size: 25px;
        font-weight: bold;
        margin: 0 0 5px 0;
    }
    
    .bonus-text-content {
        font-family: Montserrat-Regular;
        font-size: 20px;
        margin: 0;
    }
    
    .timer-container {
        display: flex;
        flex-direction: row; /* Меняем направление на вертикальное */
        justify-content: flex-end; /* Выравниваем по левому краю */
        gap: 5px; /* Уменьшаем отступ между текстом и таймером */
        flex: 1;
    }
    
    .timertext {
        font-size: 25px;
    }
    
    .timer {
        font-family: BebasNeuePro-SemiExpXBold, sans-serif;
        font-size: 25px;
    }
    .buy-button5 {
        max-width: 300px;
        margin-right: 600px;
    }
    
    .buy-button5:hover {
        color: #000000; /* Оставляем цвет текста при наведении */
    }
    .about-description {
        font-family: BebasNeuePro-Regular, sans-serif;
        font-size: 30px;
        text-align: left;
        font-weight: 400;
        margin-bottom: 10px;
    }
    
    .about-description p {
        margin-bottom: -10px; /* Уменьшаем отступ между абзацами */
    }
    
    .navigation {
        gap: 20px;
        margin-right: 30px;
    }

    .nav-link {
        font-size: 24px;
    }

    .main-cover {
        padding: 20px;
    }

    .cover-container {
        border-radius: 15px;
        margin: 20px;
        max-width: 1000px;
    }

    .cover-image-mobile {
        display: none;
    }

    .cover-image-pc {
        display: block;
    }
    .course-title {
        display: inline-block;
        text-align: center;
        position: relative;
        margin-left: 390px;
        margin-top: -60px;
        margin-bottom: -60px;
    }

    .course-format {
        font-family: Montserrat-Regular, sans-serif;
        font-size: 20px;
        font-weight: 400; /* Явно задаем вес */
        margin-bottom: 40px;
        color:#f7f6ee;
    }

    .pro {
        font-family: 'Brachetto-Regular';
        font-size: 250px;
        margin: 0 10px;
        margin-right: -10px; /* Отрицательный отступ для компактности */
        font-weight: normal;
        color: #a30000;
    }
    
    .stories {
        font-family: 'Soyuz';
        font-size: 250px;
        margin: 0 10px;
        color: #a30000;
    }

    .section-title {
        font-size: 45px;
        padding: 13px;
    }
    .course-description p {
        font-size: 45px;
        margin-left: 50px;
        text-align: center;
    }
    .course-description .buy-button1 {
        margin: 0; /* Сбросить автоматическое центрирование */
        padding: 15px 30px;
        font-size: 40px;
        margin-right: 300px;
    }

    .target-audience h3 {
        font-size: 28px;    
        margin-left: 530px;
    }

    .target-audience p {
        font-size: 20px;
        margin-left: 530px;

    }

    .course-program {
        padding: 20px;
    }

    .tariff-container {
        width: 70%;
        
    }
    .buy-button {
        margin: 35px auto;
        font-size: 40px;
    }
        
        
    .cases-container {
        width: 70%;
    }


    .format-container {
        width: 70%;
    }

    .feedback-container {
        margin: 0; /* Убираем внешние отступы */
        padding: 0; /* Убираем внутренние отступы */
        border: none; /* Убираем границы */
        background: transparent; /* Убираем фон */
        width: 100%; /* Занимаем всю ширину */
        overflow: hidden; /* Скрываем лишнее */
    }
    
    .feedback-slider {
        width: 100%; /* Занимаем всю доступную ширину */
        height: 70vh; /* Фиксированная высота, можно настроить */
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-x pinch-zoom;
        margin: 0; /* Убираем внешние отступы */
        padding: 0; /* Убираем внутренние отступы */
    }
    
    .feedback-slider::-webkit-scrollbar {
        display: none;
    }
    
    .feedback-track {
        display: flex;
        gap: 20px;
        padding: 0; /* Убираем padding для полной ширины */
        width: fit-content;
        height: 100%; /* Растягиваем на всю высоту .feedback-slider */
        align-items: center; /* Центрируем вертикально */
    }
    
    .feedback-image-container {
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #40312f; /* Оставляем, если нужно */
        flex-shrink: 0;
        width: 56%; /* Относительно ширины окна */
        max-width: 600px; /* Ограничение ширины слайда */
        aspect-ratio: 1/1; /* Сохраняем квадрат */
        margin-bottom: 10px; /* Убираем нижний отступ */
        margin-top: -10px;
    }
    
    .feedback-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        pointer-events: none;
    }
        .faq-container {
        width: 95%;
        max-width: 800px;
        margin: 0 auto;
        padding: 0px; /* Добавление паддинга для отступов по бокам */
        box-sizing: border-box;
    }
    
    .accordion {
        margin-top: 20px;
    }
    .accordion-item {
        border-radius: 15px;
        margin-bottom: 10px;
        width: 786px;
        overflow: hidden;
        background-color: #f7f6ee 
    }

    .faq-container  .accordion-item {
        border-radius: 15px;
        margin-bottom: 10px;
        width: 766px;
        overflow: hidden;
        background-color: #f7f6ee 
    }
    
    .accordion-title {
        font-family: BebasNeuePro-Regular, sans-serif;
        font-size: 26px;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .accordion-icon {
        font-size: 24px;
        transition: transform 0.15s;
    }
    
    .accordion-content {
        display: none;
        padding: 10px;
        font-family: Arial, sans-serif;
        font-size: 18px;
    }
    
    .accordion-content.show {
        display: block;
    }
    
    .accordion-icon.rotate {
        transform: rotate(45deg);
    }

    .contacts-section {
        height: 200px;
    }

    .contacts-title {
        font-size: 48px;
    }

    .contact-link,
    .contact-text {
        font-size: 28px;
    }

    .footer {
        font-size: 16px;
    }
    .background-image1 {
        display: none;
        background-image: url('images/plast.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        max-width: 350px;
        top: -140px; /* Позиция сверху */
        left: 750px; /* Позиция слева */
        width: 500px; /* Ширина изображения */
        height: 500px; /* Высота изображения */
        z-index: +1; /* Помещаем изображение под все элементы */
    }
    .background-image2 {
        display: none;
        background-image: url('backgroundimage1.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 1450px; /* Позиция сверху */
        left: 1150px; /* Позиция слева */
        width: 400px; /* Ширина изображения */
        height: 400px; /* Высота изображения */
        z-index: -1; /* Помещаем изображение под все элементы */
    }
    .image0 {
        background-image: url('z0.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 850px; /* Позиция сверху */
        left: 700px; /* Позиция слева */
        width: 500px; /* Ширина изображения */
        height: 500px; /* Высота изображения */
        z-index: +1; /* Помещаем изображение под все элементы */
    }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
@media only screen and (min-width: 1152px) and (max-width: 1728px) and (-webkit-min-device-pixel-ratio: 2) {
    .header {
        padding: 40px; /* Чуть меньше, чем на десктопе */
        height: 90px; /* Уменьшено для компактности */
    }

    .logo-container {
        width: 400px;
    }

    .lesson-image-container {
        width: 100%;
    }

    .bonus-image-container {
        width: 100%;
    }
    

    .section-title-last {
        font-family: 'BebasNeuePro-SemiExpXBold', sans-serif;
        font-size: 30px; /* Уменьшено для Retina */
        text-align: center;
        margin: 18px 18px;
        color: #f7f6ee;
    }

    .audience-container {
        margin: 0 10px 20px;
        height: 70px;
    }
    
    .audience-container h3 {
        font-family: Montserrat-Regular, sans-serif;
        font-size: 20px;
        font-weight: 400; /* Явно задаем вес */
        margin: 0 0 10px;
        color:#f7f6ee;
    }
    .audience-container h4 {
        font-family: Montserrat-Regular, sans-serif;
        font-size: 20px;
        font-weight: 400; /* Явно задаем вес */
        margin: 0 0 10px;
        color:#f7f6ee;
        margin-left: 480px;
    }
    
    .audience-container  {
        font-family: Montserrat-Regular, sans-serif;
        font-size: 15px;
        font-weight: 400; /* Явно задаем вес */
        margin: 0;
        margin-left: -155px;
        color:#f7f6ee;
    }

    .buy-button3:hover {
        background-color: #000;
        color: #000;
    }
    
    .buy-button3 {
        display: block;
        padding: 8px 18px; /* Уменьшено для компактности */
        font-family: 'BebasNeuePro-Regular', sans-serif;
        font-weight: 400;
        font-size: 36px; /* Чуть меньше */
        color: #f7f6ee;
        text-decoration: none;
        border: 1px solid #f7f6ee;
        border-radius: 45px;
        transition: background-color 0.3s, color 0.3s;
        margin: 0 auto 25px auto;
        width: fit-content;
        background: linear-gradient(to right, #b7a092, #85706c);
    }

    
    .bonus-text-header {
        font-family: BebasNeuePro-SemiExpXBold;
        font-size: 25px;
        font-weight: bold;
        margin: 0 0 5px 0;
    }
    
    .bonus-text-content {
        font-family: Montserrat-Regular;
        font-size: 20px;
        margin: 0;
    }
    .timer-container {
        display: flex;
        flex-direction: row; /* Меняем направление на вертикальное */
        justify-content: flex-end; /* Выравниваем по левому краю */
        gap: 5px; /* Уменьшаем отступ между текстом и таймером */
        flex: 1;
    }
    
    .timertext {
        font-size: 25px;
    }
    
    .timer {
        font-family: BebasNeuePro-SemiExpXBold, sans-serif;
        font-size: 25px;
    }
    .buy-button5 {
        max-width: 300px;
        margin-right: 380px;
    }
    
    .buy-button5:hover {
        color: #000000; /* Оставляем цвет текста при наведении */
    }
    .about-description {
        font-family: BebasNeuePro-Regular, sans-serif;
        font-size: 30px;
        text-align: left;
        font-weight: 400;
        margin-bottom: 10px;
    }
    
    .about-description p {
        margin-bottom: -10px; /* Уменьшаем отступ между абзацами */
    }
    .navigation {
        gap: 18px; /* Чуть меньше */
        margin-right: 25px;
    }

    .nav-link {
        font-size: 22px; /* Уменьшено для Retina */
    }

    .main-cover {
        padding: 18px;
    }

    .cover-container {
        border-radius: 15px;
        margin: 18px;
        max-width: 950px; /* Чуть меньше, чем на десктопе */
    }

    .cover-image-mobile {
        display: none;
    }

    .cover-image-pc {
        display: block;
    }

    .course-title {
        display: inline-block;
        text-align: center;
        position: relative;
        margin-left: 350px; /* Уменьшено */
        margin-top: -55px;
        margin-bottom: -55px;
    }

    .course-format {
        font-family: 'Montserrat-Regular', sans-serif;
        font-size: 18px; /* Уменьшено */
        font-weight: 400;
        margin-bottom: 35px;
        color: #f7f6ee;
    }

    .pro {
        font-family: 'Brachetto-Regular';
        font-size: 220px; /* Уменьшено для компактности */
        margin: 0 8px;
        margin-right: -8px;
        font-weight: normal;
        color: #a30000;
    }
    
    .stories {
        font-family: 'Soyuz';
        font-size: 220px;
        margin: 0 8px;
        color: #a30000;
    }

    .section-title {
        font-size: 42px; /* Уменьшено */
        padding: 12px;
    }

    .course-description p {
        font-size: 40px;
        text-align: center;
    }

    .course-description .buy-button1 {
        margin: 0;
        padding: 12px 28px; /* Чуть меньше */
        font-size: 36px; /* Уменьшено */
        margin-right: 200px;
    }

    .target-audience h3 {
        font-size: 26px; /* Уменьшено */
        margin-left: 480px;
    }

    .target-audience p {
        font-size: 18px; /* Уменьшено */
        margin-left: 480px;
    }

    .course-program {
        padding: 18px;
    }

    .price-container p1 {
        font-family: BebasNeuePro-SemiExpXBold, sans-serif;
        font-size: 45px;
        margin-bottom: 40px;
    }
    .price-old s {
        font-size: 35px;
        font-weight: 400;
    }
    
    .price-old span {
        font-size: 40px;
        font-weight: 700;
    }
    .tariff-description {
        font-family: BebasNeuePro-Regular, sans-serif;
        font-size: 35px;
    }

    .buy-button {
        margin: 30px auto; /* Чуть меньше */
        font-size: 36px; /* Уменьшено */
    }
        
    .cases-container {
        width: 75%;
    }

    .format-container {
        width: 75%;
    }

    .feedback-container {
        margin: 0; /* Убираем внешние отступы */
        padding: 0; /* Убираем внутренние отступы */
        border: none; /* Убираем границы */
        background: transparent; /* Убираем фон */
        width: 100%; /* Занимаем всю ширину */
        overflow: hidden; /* Скрываем лишнее */
    }
    
    .feedback-slider {
        width: 100%; /* Занимаем всю доступную ширину */
        height: 80vh; /* Фиксированная высота, можно настроить */
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-x pinch-zoom;
        margin: 0; /* Убираем внешние отступы */
        padding: 0; /* Убираем внутренние отступы */
    }
    
    .feedback-slider::-webkit-scrollbar {
        display: none;
    }
    
    .feedback-track {
        display: flex;
        gap: 20px;
        padding: 0; /* Убираем padding для полной ширины */
        width: fit-content;
        height: 100%; /* Растягиваем на всю высоту .feedback-slider */
        align-items: center; /* Центрируем вертикально */
    }
    
    .feedback-image-container {
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #40312f; /* Оставляем, если нужно */
        flex-shrink: 0;
        width: 56%; /* Относительно ширины окна */
        max-width: 600px; /* Ограничение ширины слайда */
        aspect-ratio: 1/1; /* Сохраняем квадрат */
        margin-bottom: 10px; /* Убираем нижний отступ */
        margin-top: -10px;
    }
    
    .feedback-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        pointer-events: none;
    }

    .faq-container {
        width: 90%; /* Чуть уже */
        max-width: 780px; /* Уменьшено */
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }
    
    .accordion {
        margin-top: 18px;
    }

    .accordion-item {
        border-radius: 15px;
        margin-bottom: 8px;
        width: 760px; /* Уменьшено */
        overflow: hidden;
        background-color: #f7f6ee;
    }

    .faq-container .accordion-item {
        border-radius: 15px;
        margin-bottom: 8px;
        width: 740px; /* Уменьшено */
        overflow: hidden;
        background-color: #f7f6ee;
    }
    
    .accordion-title {
        font-family: 'BebasNeuePro-Regular', sans-serif;
        font-size: 26px; /* Уменьшено */
        padding: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .accordion-icon {
        font-size: 22px; /* Уменьшено */
        transition: transform 0.15s;
    }
    
    .accordion-content {
        display: none;
        padding: 8px; /* Чуть меньше */
        font-family: Arial, sans-serif;
        font-size: 18px; /* Уменьшено */
    }
    
    .accordion-content.show {
        display: block;
    }
    
    .accordion-icon.rotate {
        transform: rotate(45deg);
    }

    .contacts-section {
        height: 200px; /* Чуть меньше */
    }

    .contacts-title {
        font-size: 44px; /* Уменьшено */
    }

    .contact-link,
    .contact-text {
        font-size: 26px; /* Уменьшено */
    }

    .footer {
        font-size: 14px; /* Чуть меньше */
    }

    .background-image1 {
        display: none;
        background-image: url('images/plast.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        max-width: 320px; /* Уменьшено */
        top: -130px;
        left: 720px; /* Сдвинуто чуть левее */
        width: 450px; /* Уменьшено */
        height: 450px;
        z-index: +1;
    }

    .background-image2 {
        display: none;
        background-image: url('backgroundimage1.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 1400px;
        left: 1100px; /* Сдвинуто левее */
        width: 380px; /* Уменьшено */
        height: 380px;
        z-index: -1;
    }

    .image0 {
        background-image: url('z0.png');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 800px; /* Чуть выше */
        left: 680px; /* Сдвинуто левее */
        width: 450px; /* Уменьшено */
        height: 450px;
        z-index: +1;
    }

    /* Дополнительно для Retina */
    body {
        -webkit-font-smoothing: antialiased; /* Улучшение шрифтов на MacBook */
    }
}