    /* Reset and base styles  */
    * {
        padding: 0px;
        margin: 0px;
        border: none;
    }
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    /* Links */
    a, a:link, a:visited  {
        text-decoration: none;
    }
    a:hover  {
        text-decoration: none;
    }

    /* Common */

    aside, nav, footer, header, section, main {
        display: block;
    }
    h1, h2, h3, h4, h5, h6, p {
        font-size: inherit;
        font-weight: inherit;
    }
    ul, ul li {
        list-style: none;
    }
    img {
        vertical-align: top;
    }
    img, svg {
        max-width: 100%;
        height: auto;
    }
    address {
      font-style: normal;
    }

    /* Form */
    input, textarea, button, select {
        font-family: inherit;
        font-size: inherit;
        color: inherit;
        background-color: transparent;
    }
    input::-ms-clear {
        display: none;
    }
    button, input[type="submit"] {
        display: inline-block;
        box-shadow: none;
        background-color: transparent;
        background: none;
        cursor: pointer;
    }
    input:focus, input:active,
    button:focus, button:active {
        outline: none;
    }
    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }
    label {
        cursor: pointer;
    }
    legend {
        display: block;
    }
    /* Reset and base styles end  */
    
    
    
    body {
        margin: 0;
        font-family: var(--Font-family-font-family-body, Inter);
        overflow: auto;
    }
    .container {
        display: flex;
        max-width: var(--Containers-container-max-width-desktop, 1440px);
        padding: 0px var(--Containers-container-padding-desktop, 52px);
        align-items: center;
        gap: var(--Spacing-spacing-6xl, 48px);
        align-self: stretch;
        width: 100%;
        margin: 0 auto;
    }
    .header {
        display: flex;
        width: 100%;
        height: 68px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-bottom: 1px solid var(--Colors-Border-border-secondary, #E9EAEB);
        box-sizing: border-box;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 1000;
        background: var(--Colors-Background-bg-primary, #FFF);
    }
    .header__nav-content {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-6xl, 48px);
        flex: 1 0 0;
    }
    .header__logo {
        width: 126px;
        height: 29px;
    }
    .header__navigation {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-4xl, 32px);
    }
    .header__nav-item {
        height: 68px;
        text-decoration: none;
        display: flex;
        padding: var(--Spacing-spacing-3xl, 24px) 0px;
        align-items: center;
        gap: var(--Spacing-spacing-xs, 4px);
        color: var(--Component-colors-Components-Buttons-Tertiary-button-tertiary-fg, #414651) !important;
        font-size: var(--Font-size-text-sm, 14px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
        box-sizing: border-box;
        transition: color .2s, box-shadow .2s;
    }
    .header__nav-item:hover {
        color: var(--Component-colors-Components-Buttons-Tertiary-button-tertiary-fg_hover, #181D27) !important;
        background: rgba(255, 255, 255, 0.00);
        box-shadow: 0px -2px 0px 0px var(--Colors-Brand-400, #FF5850) inset;
    }
    .header__actions-content {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-4xl, 32px);
    }
    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-weight: var(--Font-weight-semi-bold, 600);
        cursor: pointer;
        transition: background-color .3s cubic-bezier(.165,.84,.44,1);

    }
    .button_size-md {
        gap: var(--Spacing-spacing-xs, 4px);
        padding: 10px 14px;
        font-size: var(--Font-size-text-sm, 14px);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
        height: auto;
    }
    .button_size-lg {
        gap: var(--Spacing-spacing-sm, 6px);
        padding: 10px var(--Spacing-spacing-xl, 16px);
        font-size: var(--Font-size-text-md, 16px);
        line-height: var(--Line-height-text-md, 24px); /* 150% */
        height: auto;
    }
    .button_size-xl {
        gap: var(--Spacing-spacing-sm, 6px);
        padding: var(--Spacing-spacing-lg, 12px) 18px;
        font-size: var(--Font-size-text-md, 16px);
        line-height: var(--Line-height-text-md, 24px); /* 142.857% */
        height: auto;
    }
    .button_hierarchy-primary {
        border-radius: var(--Radius-radius-xs, 4px);
        background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #FF5850);
        color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF) !important;
        box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05), 0px 1px 1px 0px rgba(255, 255, 255, 0.20) inset, 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset;
        min-width: 96px;
    }
    .button_hierarchy-primary:hover {
        background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg_hover, #F8443B);
    }
    .button_hierarchy-secondary-gray {
        border-radius: var(--Radius-radius-xs, 4px);
        background: var(--Component-colors-Components-Buttons-Secondary-button-secondary-bg, #FFF);
        color: var(--Component-colors-Components-Buttons-Secondary-button-secondary-fg, #414651) !important;
        border: 1px solid var(--Component-colors-Components-Buttons-Secondary-button-secondary-border_hover, #F4CFCD); 
        /*#D5D7DA*/
        box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05), 0px 1px 1px 0px rgba(255, 255, 255, 0.20) inset, 0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset;
        min-width: 96px;
    }
    .button_hierarchy-secondary-gray:hover {
        background: var(--Component-colors-Components-Buttons-Secondary-button-secondary-bg_hover, #FAFAFA);
        color: var(--Component-colors-Components-Buttons-Secondary-button-secondary-fg_hover, #252B37);
    }
    .button_hierarchy-link-gray {
        padding: 0;
        color: var(--Component-colors-Components-Buttons-Tertiary-button-tertiary-fg, #414651) !important;
        transition: color .3s cubic-bezier(.165,.84,.44,1);
    }
    .button_hierarchy-link-gray:hover {
        color: var(--Component-colors-Components-Buttons-Tertiary-button-tertiary-fg_hover, #181D27) !important;
    }
    .button--loading {
        cursor: not-allowed;
        opacity: 0.7;
        position: relative;
    }
    .button--loading::after {
        content: '';
        width: 16px;
        height: 16px;
        border: 2px solid white;
        border-top: 2px solid transparent;
        border-radius: 50%;
        position: absolute;
        right: 10px; /* Расположение индикатора */
        top: 50%;
        transform: translateY(-50%);
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        from {
            transform: translateY(-50%) rotate(0deg);
        }
        to {
            transform: translateY(-50%) rotate(360deg);
        }
    }
    .form__error {
        color: #ff5a5a;
        font-size: 12px;
        margin-top: 5px;
        animation: fade-in 0.3s ease-in-out;
    }
    @keyframes fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .form__success-message {
        font-size: var(--Font-size-text-md, 16px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 24px); /* 142.857% */
        color: #067647; /* Зеленый цвет для успеха */
        text-align: start;
        padding: 12px;
        border: 1px solid #75E0A7;
        border-radius: 4px;
        background: #F6FEF9;
        width: 100%;
        box-sizing: border-box;
    }
    .form__success-link {
        color: #2E90FA !important; /* Цвет ссылки */
        text-decoration: underline !important;
        font-weight: var(--Font-weight-semi-bold, 600);
    }
    .form__success-link:hover {
        color: #175CD3 !important; /* Цвет при наведении */
        text-decoration: none !important;
    }
    .button_nav {
        padding: 10px 0;
    }
    .header__menu-mobile-button {
        display: none;
        padding: var(--Spacing-spacing-md, 8px);
        align-items: center;
        gap: var(--Spacing-spacing-md, 8px);
        border-radius: var(--Radius-radius-md, 8px);
        margin-right: -8px;
        cursor: pointer;
        position: relative;
    }
    .header__menu-mobile-button .icon {
        display: none; /* Скрываем иконки по умолчанию */
        width: 24px;
        height: 24px;
        transition: opacity 0.3s ease; /* Добавляем плавность */
    }
    .header__menu-mobile-button .icon--hamburger {
        display: block; /* Показываем иконку гамбургера */
    }
    .header__menu-mobile-button.is-active .icon--hamburger {
        display: none; /* Скрываем гамбургер при активном состоянии */
    }
    .header__menu-mobile-button .icon--close {
        display: none;
    }
    .header__menu-mobile-button.is-active .icon--close {
        display: block; /* Показываем крестик при активном состоянии */
    }
    .header__mobile-menu-overlay {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--Colors-Background-bg-primary, #FFF);
        z-index: 100; /* Убедитесь, что оно выше остального контента */
        height: 100vh;
    }
    .header__mobile-menu-overlay.is-visible {
        display: block; /* Или visibility: visible; */
        opacity: 1;
    }
    .header__mobile-menu-nav {
        display: flex;
        padding: var(--Spacing-spacing-2xl, 20px) 0px;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacing-spacing-xxs, 2px);
        align-self: stretch;
        border-bottom: 1px solid var(--Colors-Border-border-secondary, #E9EAEB);
        margin: 0 auto;
        width: 100%;

    }
    .header__mobile-menu-link {
        display: flex;
        padding: var(--Spacing-spacing-lg, 12px) var(--Containers-container-padding-desktop, 40px);
        align-items: center;
        gap: 18px;
        align-self: stretch;
        color: var(--colors-text-text-primary-900, #181D27) !important;
        font-size: var(--Font-size-text-md, 16px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-md, 24px); /* 150% */
    }
    .header__mobile-menu-footer {
        display: flex;
        padding: var(--Spacing-spacing-3xl, 24px) var(--Containers-container-padding-desktop, 40px);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacing-spacing-xl, 16px);
        align-self: stretch;
        margin: 0 auto;
        width: 100%;
    }
    .form {
        display: flex;
        align-items: flex-start;
        gap: var(--Spacing-spacing-xl, 16px);
        align-self: stretch;
    }
    .form--horizontal {
        flex-direction: row;
    }
    .form__input-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacing-spacing-sm, 6px);
        flex: 1 0 0;
    }
    .form__label {
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-sm, 14px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
    }
    .form__label-required {
        color: var(--colors-text-text-brand-tertiary-600, #E4271D);
        font-size: var(--Font-size-text-sm, 14px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
    }
    .form__input {
        height: 48px;
        display: flex;
        padding: var(--Spacing-spacing-lg, 12px) 14px;
        align-items: center;
        gap: var(--Spacing-spacing-md, 8px);
        align-self: stretch;
        color: var(--Colors-Text-text-placeholder, #717680);
        font-size: var(--Font-size-text-md, 16px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 24px); /* 150% */
        border-radius: var(--Radius-radius-xs, 4px);
        border: 1px solid var(--Colors-Border-border-primary, #D5D7DA);
        background: var(--Colors-Background-bg-primary, #FFF);
        box-sizing: border-box;
    }
    .form__consent {
        align-self: stretch;
        color: var(--colors-text-text-tertiary-600, #535862);
        font-size: var(--Font-size-text-sm, 14px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
    }
    .button__wrapper {
        display: flex;
        padding-top: 26px;
        flex-direction: column;
        align-items: flex-start;
    }
    .lessons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1 0 0;
        background: var(--Colors-Background-bg-primary, #FFF);
        padding-left: 0 !important;
        margin-bottom: 96px !important;
    }
    .lessons__item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        background: var(--Colors-Background-bg-secondary, #FAFAFA);
    }
    .lessons__item.white {
        background: var(--Colors-Background-bg-primary, #FFFFFF);
    }
    .lessons__header {
        display: flex;
        padding: var(--Spacing-spacing-4xl, 24px);
        align-items: center;
        gap: var(--Spacing-spacing-2xl, 20px);
        align-self: stretch;
        border-bottom: 1px dashed var(--Colors-Border-border-secondary, #E9EAEB);
    }
    .lessons__info {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-xl, 16px);
        flex: 1 0 0;
    }
    .lessons__label {
        display: flex;
        min-width: 108px;
        padding: var(--Spacing-spacing-md, 4px) var(--Spacing-spacing-3xl, 16px);
        justify-content: center;
        align-items: center;
        gap: var(--Spacing-spacing-sm, 6px);
        border-radius: var(--Radius-radius-xs, 4px);
        border: 1px solid var(--Component-colors-Utility-Success-utility-success-200, #ABEFC6);
        background: var(--Component-colors-Utility-Success-utility-success-50, #ECFDF3);
        color: var(--Component-colors-Utility-Success-utility-success-700, #067647);
        font-size: var(--Font-size-text-md, 14px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-md, 20px); /* 150% */
    }
    .lessons__item.head .lessons__header {
        padding: var(--Spacing-spacing-xl, 16px) var(--Spacing-spacing-4xl, 32px);
    }
    
    .lessons__title {
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-text-lg, 16px);
        font-weight: var(--Font-weight-medium, 500);
        line-height: var(--Line-height-text-lg, 24px); /* 155.556% */
    }
    .lessons__item.head .lessons__title,
    .lessons__item.head .lessons__parts,
    .lessons__item.head .lessons__duration {
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-text-md, 14px);
        font-weight: var(--Font-weight-medium, 600);
        line-height: var(--Line-height-text-md, 20px); /* 155.556% */
    }
    .lessons__actions {
        display: flex;
        align-items: center;
    }
    .lessons__parts {
        display: flex;
        width: 200px;
        padding: var(--Spacing-spacing-md, 8px) var(--Spacing-spacing-xl, 16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-md, 14px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 20px); /* 150% */
    }
    .lessons__duration {
        display: flex;
        width: 200px;
        padding: var(--Spacing-spacing-md, 8px) var(--Spacing-spacing-xl, 16px);
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-md, 14px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 20px); /* 150% */
    }
    .lessons__rate {
        display: flex;
        width: 200px;
        padding: var(--Spacing-spacing-md, 8px) var(--Spacing-spacing-xl, 16px);
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-md, 14px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 20px); /* 150% */
    }
    .lessons-toggle__wrapper {
        display: flex;
        width: 140px;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    .lessons__sublist {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        padding-left: 0 !important;
        margin-bottom: 0px !important;
    }
    .lessons__sublist.active {
        display: flex;
    }
    .lessons__subitem {
        display: flex;
        padding: var(--Spacing-spacing-4xl, 32px);
        align-items: center;
        gap: var(--Spacing-spacing-2xl, 20px);
        align-self: stretch;
        border-bottom: 1px solid var(--Colors-Border-border-secondary, #E9EAEB);
    }
    .lessons__subtitle {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-xl, 16px);
        flex: 1 0 0;
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-md, 16px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 24px); /* 150% */
    }
    /* Оболочка, в которой два блока */
    .faq__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 64px;
        width: 100%;
        padding: 96px 0;
        border-top: 1px solid var(--Colors-Border-border-secondary, #E9EAEB);
    }
    
    /* Левый блок с заголовком */
    .faq__intro {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
        gap: var(--Spacing-spacing-2xl, 20px);
        align-self: stretch;
        min-width: var(--Widths-width-sm, 480px);
        max-width: var(--Widths-width-xl, 768px);
    }
    
    .faq__title {
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-display-md, 36px);
        font-weight: var(--Font-weight-semi-bold, 600);
        line-height: var(--Line-height-display-md, 44px); /* 122.222% */
        align-self: stretch;
    }
    
    .faq__description {
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-xl, 20px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-xl, 30px); /* 150% */
        align-self: stretch;
    }
    
    .faq__link {
        color: var(--Component-colors-Components-Buttons-Tertiary-color-button-tertiary-color-fg, #E4271D) !important;
        text-decoration: underline !important;
    }
    
    /* Правый блок с аккордеоном */
    .faq__accordion {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
        gap: var(--Spacing-spacing-xl, 16px);
        align-self: stretch;
        min-width: var(--Widths-width-sm, 480px);
        padding-left: 0 !important;
        margin-bottom: 0px !important;
    }

    
    .faq__item {
        display: flex;
        padding: var(--Spacing-spacing-4xl, 32px);
        flex-direction: column;
        align-items: flex-start;
        border-radius: var(--Radius-radius-2xl, 16px);
        width: 100%;
    }
    .faq__item:hover {
        background: var(--Colors-Background-bg-secondary, #FAFAFA);
    }
    .faq__item.open {
        background: var(--Colors-Background-bg-secondary, #FAFAFA);
    }
    
    /* Весь блок с вопросом и кнопкой */
    .faq__content {
        display: flex;
        min-width: var(--Widths-width-xxs, 320px);
        gap: var(--Spacing-spacing-3xl, 32px);
        transition: background 0.3s ease;
        width: 100%;
    }

    
    /* Вопрос и ответ */
    .faq__text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacing-spacing-md, 8px);
        width: 100%;
    }
    
    /* Вопрос */
    .faq__question {
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-text-lg, 18px);
        font-weight: var(--Font-weight-regular, 500);
        line-height: var(--Line-height-text-lg, 28px); /* 150% */
        align-self: stretch;
        width: 100%;
    }
    
    /* Текст ответа (по умолчанию скрыт) */
    .faq__text p {
        color: var(--colors-text-text-tertiary-600, #535862);
        font-size: var(--Font-size-text-md, 16px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-md, 24px); /* 150% */
        align-self: stretch;
        display: none;
        width: 100%;
    }
    
    /* Иконка + */
    .faq-toggle__wrapper {
        padding-top: var(--spacing-xxs, 2px);
        min-width: 24px;
        min-height: 24px;
        transition: transform 0.3s ease;
    }
    
    /* Открытие блока */
    .faq__item.open .faq__text p {
        display: block;
    }
    
    .zero-button-primary {
        box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05), 
                    0px 1px 1px 0px rgba(255, 255, 255, 0.20) inset, 
                    0px 6px 12px 0px rgba(255, 255, 255, 0.12) inset;
    }
    
    .modal {
        display: none;
        min-height: 100%;
        height: auto;
        padding: var(--Spacing-spacing-4xl, 32px) var(--Containers-container-padding-desktop, 40px);
        align-items: center;
        position: fixed;
        background: var(--Colors-Background-bg-overlay, rgba(10, 13, 18, 0.70));
        backdrop-filter: blur(8px);
        z-index: 999;
        
        inset: 0;
        justify-content: center;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: all .4s;
        visibility: visible;
        opacity: 1;
        z-index: 999;
    }
    
    .modal--visible {
        display: flex;
    }
    
    .modal__overflow {
        overflow: auto;
        width: 100%;
    }
    .modal__content--sidebar {
        display: flex;
        width: var(--Widths-width-md, 560px);
        flex-direction: column;
        align-items: center;
        position: fixed;
        right: 0px;
        background: var(--Colors-Background-bg-primary, #FFF);
        
        top: 0;
        max-width: 100%;
        height: 100vh;
        transition: none;
    }
    .modal__header {
        display: flex;
        padding: var(--Spacing-spacing-7xl, 64px) var(--Spacing-spacing-7xl, 64px) var(--Spacing-spacing-3xl, 24px) var(--Spacing-spacing-7xl, 64px);
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }
    .modal__header--content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        position: relative;
    }
    .modal__title {
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-xl, 20px);
        font-weight: var(--Font-weight-semi-bold, 600);
        line-height: var(--Line-height-text-xl, 30px); /* 150% */
    }
    .button__close {
        display: flex;
        width: 44px;
        height: 44px;
        padding: var(--Spacing-spacing-md, 8px);
        justify-content: center;
        align-items: center;
        gap: var(--Spacing-spacing-md, 8px);
        position: absolute;
        right: 0px;
        top: -7px;
        border-radius: var(--Radius-radius-md, 8px);
    }
    .modal__list {
        margin-bottom: 0px !important;
        display: flex;
        padding: 0px var(--Spacing-spacing-7xl, 64px) !important;
        align-items: center;
        gap: 10px;
        align-self: stretch;
    }
    .cart__item {
        display: flex;
        padding: var(--Spacing-spacing-xl, 16px);
        align-items: center;
        flex: 1 0 0;
        border-radius: var(--Radius-radius-md, 8px);
        background: var(--Colors-Background-bg-tertiary, #F5F5F5);
    }
    .list-cart__info {
        display: flex;
        align-items: center;
        gap: var(--Spacing-spacing-xl, 16px);
        flex: 1 0 0;
    }
    .cart__image {
        width: 96px;
        height: 72px;
        border-radius: var(--Radius-radius-xs, 4px);
        object-fit: cover;
    }
    .cart__details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: var(--Spacing-spacing-xxs, 2px);
        flex: 1 0 0;
    }
    .cart__course {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Spacing-spacing-xxs, 2px);
        align-self: stretch;
    }
    .cart__name {
        align-self: stretch;
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-text-sm, 14px);
        font-weight: var(--Font-weight-semi-bold, 600);
        line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
    }
    .cart__tariff {
        align-self: stretch;
        color: var(--colors-text-text-secondary-700, #414651);
        font-size: var(--Font-size-text-xs, 12px);
        font-weight: var(--Font-weight-regular, 400);
        line-height: var(--Line-height-text-xs, 18px); /* 150% */
    }
    .cart_price {
        color: var(--colors-text-text-primary-900, #181D27);
        font-size: var(--Font-size-text-lg, 18px);
        font-weight: var(--Font-weight-semi-bold, 600);
        line-height: var(--Line-height-text-lg, 28px); /* 155.556% */
    }
    .modal__footer {
        display: flex;
        padding: var(--Spacing-spacing-4xl, 32px) var(--Spacing-spacing-7xl, 64px) var(--Spacing-spacing-7xl, 64px) var(--Spacing-spacing-7xl, 64px);
        justify-content: center;
        align-items: flex-start;
        align-self: stretch;
    }
    
    @media (max-width: 1439px) {
        body {
            padding-top: 68px;
        }
        .container {
            padding: 0px var(--Containers-container-padding-desktop, 40px);
        }
        .lessons__parts {
            width: 96px;
            padding: var(--Spacing-spacing-md, 8px) var(--Spacing-spacing-md, 8px);
        }
        .lessons__duration {
            width: 160px;
            padding: var(--Spacing-spacing-md, 8px) var(--Spacing-spacing-md, 8px);
        }
        .lessons-toggle__wrapper {
            width: 120px;
        }
    }
    @media (max-width: 1023px) {
        .header {
            height: 64px;
        }
        .container {
            padding: 0px var(--Containers-container-padding-desktop, 32px);
        }
        .header__navigation, .header__menu-button {
            display: none;
        }
        .header__menu-mobile-button {
            display: flex;
        }
        .header__actions-content {
            gap: var(--Spacing-spacing-md, 8px);
        }
        .header__mobile-menu-nav, .header__mobile-menu-footer {
            max-width: 768px;
        }
        .lessons__info {
            align-items: flex-start;
            flex-direction: column;
        }
        .lessons__actions {
            display: none;
        }
        .lessons__sublist {
            display: flex;
        }
        .faq__wrapper {
            flex-direction: column;
        }
        .faq__intro {
            width: 100%;
        }
        .faq__accordion {
            width: 100%;
        }
    }
    @media (max-width: 767px) {
        body {
            padding-top: 64px;
        }
        .container {
            padding: 0px var(--Containers-container-padding-desktop, 20px);
        }
        .form--horizontal {
            flex-direction: column;
        }
        .form__label {
            font-size: var(--Font-size-text-xs, 12px);
            line-height: var(--Line-height-text-xs, 18px); /* 142.857% */
        }
        .form__label-required {
            font-size: var(--Font-size-text-xs, 12px);
            line-height: var(--Line-height-text-xs, 18px); /* 142.857% */
        }
        .form__consent {
            font-size: var(--Font-size-text-xs, 12px);
            line-height: var(--Line-height-text-xs, 18px); /* 142.857% */
        }
        .button__wrapper {
            width: 100%;
            padding-top: 0;
        }
        .button {
            width: 100%;
        }
        .form__success-message {
            font-size: var(--Font-size-text-sm, 14px);
            line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
            padding: 8px;
            border-radius: 2px;
        }
        .header__mobile-menu-nav, .header__mobile-menu-footer {
            max-width: 480px;
        }
        .lessons {
            margin-bottom: 64px !important;
        }
        .lessons__header, .lessons__subitem {
            padding: var(--Spacing-spacing-xl, 16px) var(--Spacing-spacing-lg, 12px);
        }
        .lessons__item.head .lessons__header {
            padding: var(--Spacing-spacing-lg, 12px);
        }
        .lessons__label {
            padding: var(--Spacing-spacing-xs, 2px) var(--Spacing-spacing-lg, 8px);
            font-size: var(--Font-size-text-sm, 12px);
            line-height: var(--Line-height-text-sm, 18px); /* 150% */
        }
        .faq__wrapper {
            gap: var(--Spacing-spacing-6xl, 48px);
            padding: 64px 0;
        }
        .faq__intro {
            gap: var(--Spacing-spacing-xl, 16px);
            min-width: unset;
        }
        .faq__accordion {
            min-width: unset;
        }
        .faq__title {
            font-size: var(--Font-size-display-sm, 30px);
            line-height: var(--Line-height-display-sm, 38px); /* 142.857% */
        }
        .faq__description {
            font-size: var(--Font-size-text-lg, 18px);
            line-height: var(--Line-height-text-lg, 28px); /* 142.857% */
        }
        .faq__item {
            padding: var(--Spacing-spacing-2xl, 20px);
        }
        .faq__content {
            gap: var(--Spacing-spacing-md, 8px);
        }
        .faq__question {
            font-size: var(--Font-size-text-lg, 18px);
            line-height: var(--Line-height-text-lg, 28px); /* 142.857% */
        }
        .modal__header {
            padding: var(--Spacing-spacing-3xl, 24px) var(--Containers-Container-padding-mobile, 20px);
        }
        .modal__list {
            padding: 0px var(--Containers-Container-padding-mobile, 20px) !important;
        }
        .modal__footer {
            padding: var(--Spacing-spacing-4xl, 32px) var(--Containers-Container-padding-mobile, 20px) var(--Spacing-spacing-4xl, 32px) var(--Containers-Container-padding-mobile, 20px);
            margin-bottom: 64px;
        }
    }
    @media (max-width: 479px) {
        .container {
            padding: 0px var(--Containers-container-padding-desktop, 16px);
            gap: var(--Spacing-spacing-3xl, 24px);
        }
        
        .header__mobile-menu-nav, .header__mobile-menu-footer {
            max-width: 360px;
        }
        
        .header__mobile-menu-link {
            padding: var(--Spacing-spacing-lg, 12px) var(--Containers-Container-padding-mobile, 20px);
        }
        .header__mobile-menu-footer {
            padding: var(--Spacing-spacing-3xl, 24px) var(--Containers-Container-padding-mobile, 20px);
        }
        .faq__content {
            min-width: unset;
        }
    }
    @media (max-width: 359px) {
        body {
            zoom: 0.9; /* Уменьшение размера */
        }
        .container {
            gap: var(--Spacing-spacing-xl, 16px);
        }
    }
    
    #rec855014503 {
        display: none;
    }
