/* Глобальные стили */
* {
    box-sizing: border-box;
}

/* Стили для кнопок */
button, .button, .btn {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 600 !important;
}

/* CSS-переменные для анимаций */
:root {
    --anim-duration-base: 0.3s;
    --anim-duration-slow: 0.5s;
    --anim-duration-fast: 0.2s;
    --anim-delay-base: 0.05s;
    --anim-delay-step: 0.05s;
}

html {
    height: 100%;
    background-color: black;
}

body {
    margin: 0;
    background-color: #f8f9fa;
    color: white;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.loaded::after {
    opacity: 0;
}

/* Стиль для запрета прокрутки страницы */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    -ms-touch-action: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}


.text-right {
    display: none;
}

p {
    font-size: 22px;
    line-height: 1.4;
    color: #333333;
    margin: 0;
    text-align: left;
    width: 100%;
}


/*Стили для блока FAQ*/
/* Стили для секции FAQ */
.faq {
    padding: 0px 40px 0;
    background: #ffffff;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    padding-bottom: 30px;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 80px; /* Добавляем внутренний отступ снизу */
}

.faq__container:before,
.faq__container:after {
    display: none;
}

.faq__title {
    font-size: 46px;
    color: #000;
    margin-bottom: 30px;
    margin-top: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}



.faq__more-button-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.faq__more-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.faq__more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FF8533 0%, #FF6B00 100%);
}

.faq__item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
}

.faq__item:before {
    content: none;
}

.faq__item:hover:before {
    opacity: 0;
}

.faq__item:hover {
    box-shadow: none;
    transform: none;
}

.faq__item.active {
    background: transparent;
    border-left: none;
    box-shadow: none;
    border-bottom-color: #FF6B00;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq__question span {
    font-size: 20px;
    color: #000;
    padding-right: 40px;
    transition: color 0.3s ease;
    padding-left: 0;
    letter-spacing: 0.01em;
}

.faq__icon {
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: #000;
    transition: all 0.3s ease;
}

.faq__icon::before {
    width: 14px;
    height: 1.5px;
}

.faq__icon::after {
    width: 1.5px;
    height: 14px;
    transform: rotate(0deg);
}

.faq__item.active .faq__icon {
    background: transparent;
    transform: rotate(0);
}

.faq__item.active .faq__question span {
    color: #FF6B00;
}

.faq__item.active .faq__icon::before,
.faq__item.active .faq__icon::after {
    background-color: #FF6B00;
}

.faq__item.active .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.faq__item.active .faq__answer {
    max-height: 1000px;
    padding: 0 0 24px;
    opacity: 1;
    visibility: visible;
}

.faq__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-right: 20px;
    position: relative;
    padding-left: 0;
}

.faq__item.active .faq__answer p::before {
    content: none;
}

/* Мобильные стили для FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 20px 40px;
    }
    
    .faq__title {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    .faq__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq__question {
        padding: 16px 0;
    }
    
    .faq__question span {
        font-size: 16px;
        padding-right: 30px;
    }
    
    .faq__icon {
        right: 0;
        width: 20px;
        height: 20px;
    }
    
    .faq__answer p {
        font-size: 14px;
        padding-right: 0;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 0 20px;
    }
    

    
    .faq__more-button-container {
        margin-top: 40px;
    }
    
    .faq__more-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 15px 30px;
    }
    
    .faq__title {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .faq__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq__question {
        padding: 14px 0;
    }
    
    .faq__question span {
        font-size: 15px;
        padding-right: 25px;
        line-height: 1.4;
    }
    
    .faq__icon {
        width: 18px;
        height: 18px;
    }
    
    .faq__icon::before {
        width: 10px;
    }
    
    .faq__icon::after {
        height: 10px;
    }
    
    .faq__answer p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 0 16px;
    }
    

    
    .faq__more-button-container {
        margin-top: 30px;
    }
    
    .faq__more-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}


@media (max-width: 1200px) {
    

    /*Настройки для блока FAQ*/
    .faq {
        padding: 80px 30px 60px;
    }
    
    .faq__title {
        font-size: 38px;
        margin-bottom: 50px;
    }
    
    .faq__question span {
        font-size: 17px;
    }
    
    .faq__answer p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    /*Настройки для блока FAQ*/
    .faq {
        padding: 40px 15px 30px;
    }
    
    .faq__title {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .faq__question {
        padding: 14px 0;
    }
    
    .faq__question span {
        font-size: 15px;
        padding-right: 25px;
        line-height: 1.4;
    }
    
    .faq__icon {
        width: 18px;
        height: 18px;
    }
    
    .faq__icon::before {
        width: 10px;
    }
    
    .faq__icon::after {
        height: 10px;
    }
    
    .faq__answer p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 0 16px;
    }
}

@media (max-width: 480px) {

    /*Настройки для блока FAQ*/
    .faq {
        padding: 0px 15px 30px;
    }
    
    .faq__title {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .faq__question {
        padding: 14px 0;
    }
    
    .faq__question span {
        font-size: 15px;
        padding-right: 25px;
        line-height: 1.4;
    }
    
    .faq__icon {
        width: 18px;
        height: 18px;
    }
    
    .faq__icon::before {
        width: 10px;
    }
    
    .faq__icon::after {
        height: 10px;
    }
    
    .faq__answer p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 0 16px;
    }

}

/* Стили для страницы FAQ */
.faq-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333333;
    padding: 80px 0 60px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.faq-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero__breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 30px;
    color: #666666;
}

.faq-hero__breadcrumbs a {
    color: #FF6B00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.faq-hero__breadcrumbs a:hover {
    color: #FF8533;
}

.faq-hero__breadcrumbs span {
    color: #999999;
}

.faq-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.faq-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #666666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.faq-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.faq-hero__stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF6B00;
    line-height: 1;
}

.faq-hero__stat-label {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Стили для полного FAQ */
.faq-full {
    padding: 80px 0;
    background: #ffffff;
}

.faq-full__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-full__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-full__section-title {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B00;
    margin: 60px 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF6B00;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

.faq-full__section-title:first-child {
    margin-top: 0;
}

.faq-full__item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.faq-full__item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-full__item.active {
    border-color: #FF6B00;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.faq-full__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-full__question:hover {
    background: #f5f5f5;
}

.faq-full__item.active .faq-full__question {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: #ffffff;
}

.faq-full__question span {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    padding-right: 40px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq-full__item.active .faq-full__question span {
    color: #ffffff;
}

.faq-full__icon {
    position: relative;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-full__icon::before,
.faq-full__icon::after {
    content: '';
    position: absolute;
    background: #000000;
    transition: all 0.3s ease;
}

.faq-full__icon::before {
    width: 16px;
    height: 2px;
}

.faq-full__icon::after {
    width: 2px;
    height: 16px;
    transform: rotate(0deg);
}

.faq-full__item.active .faq-full__icon::before,
.faq-full__item.active .faq-full__icon::after {
    background: #ffffff;
}

.faq-full__item.active .faq-full__icon::after {
    transform: rotate(90deg);
}

.faq-full__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-full__item.active .faq-full__answer {
    max-height: 1000px;
    padding: 0 32px 32px;
    opacity: 1;
    visibility: visible;
}

.faq-full__answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
    padding-right: 20px;
    position: relative;
    padding-left: 0;
}

.faq-full__answer p:last-child {
    margin-bottom: 0;
}

.faq-full__answer ul,
.faq-full__answer ol {
    margin: 20px 0;
    padding-left: 25px;
}

.faq-full__answer ul {
    list-style-type: disc;
}

.faq-full__answer ol {
    list-style-type: decimal;
}

.faq-full__answer li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    position: relative;
}

.faq-full__answer li:last-child {
    margin-bottom: 0;
}

.faq-full__answer li strong {
    color: #333;
    font-weight: 600;
}

.faq-full__answer strong {
    color: #333;
    font-weight: 600;
}

.faq-full__answer ul ul,
.faq-full__answer ol ol {
    margin: 10px 0;
    padding-left: 20px;
}

/* CTA секция для FAQ */
.faq-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.faq-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-cta__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.faq-cta__subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #cccccc;
}

.faq-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-width: 200px;
}

.faq-cta__button--primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.faq-cta__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FF8533 0%, #FF6B00 100%);
}

.faq-cta__button--secondary {
    background: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.faq-cta__button--secondary:hover {
    background: #FF6B00;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Адаптивные стили для FAQ страницы */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 0 40px;
    }
    
    .faq-hero__title {
        font-size: 36px;
    }
    
    .faq-hero__subtitle {
        font-size: 16px;
    }
    
    .faq-hero__stats {
        gap: 40px;
        margin-top: 30px;
    }
    
    .faq-hero__stat-number {
        font-size: 28px;
    }
    
    .faq-hero__stat-label {
        font-size: 12px;
    }
    
    .faq-full {
        padding: 60px 0;
    }
    
    .faq-full__section-title {
        font-size: 24px;
        margin: 40px 0 20px 0;
        padding-bottom: 10px;
    }
    
    .faq-full__question {
        padding: 20px 24px;
    }
    
    .faq-full__question span {
        font-size: 16px;
        padding-right: 30px;
    }
    
    .faq-full__item.active .faq-full__answer {
        padding: 0 24px 24px;
    }
    
    .faq-full__answer p {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 12px;
    }
    
    .faq-full__answer ul,
    .faq-full__answer ol {
        margin: 12px 0;
        padding-left: 15px;
    }
    
    .faq-full__answer li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .faq-cta {
        padding: 60px 0;
    }
    
    .faq-cta__title {
        font-size: 36px;
    }
    
    .faq-cta__subtitle {
        font-size: 18px;
    }
    
    .faq-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta__button {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 60px 0 40px;
    }
    
    .faq-hero__title {
        font-size: 32px;
    }
    
    .faq-hero__subtitle {
        font-size: 16px;
    }
    
    .faq-full {
        padding: 40px 0;
    }
    
    .faq-full__section-title {
        font-size: 20px;
        margin: 30px 0 15px 0;
        padding-bottom: 8px;
    }
    
    .faq-full__question {
        padding: 16px 20px;
    }
    
    .faq-full__question span {
        font-size: 15px;
        padding-right: 25px;
        line-height: 1.4;
    }
    
    .faq-full__icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-full__icon::before {
        width: 12px;
    }
    
    .faq-full__icon::after {
        height: 12px;
    }
    
    .faq-full__item.active .faq-full__answer {
        padding: 0 20px 20px;
    }
    
    .faq-full__answer p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq-cta {
        padding: 40px 0;
    }
    
    .faq-cta__title {
        font-size: 28px;
    }
    
    .faq-cta__subtitle {
        font-size: 16px;
    }
    
    .faq-cta__button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Новый дизайн FAQ страницы в стиле карточек */
.faq-cards {
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
}

.faq-cards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

/* Внутренний контейнер для контента */
.faq-cards__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

/* Заголовок страницы */
.faq-cards__header {
    text-align: left;
    margin-bottom: 0;
    padding: 50px 0 30px;
    background: #111111;
    border-bottom: none;
    position: relative;
    color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.faq-cards__header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.faq-cards__breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #cccccc;
}

.faq-cards__breadcrumbs a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-cards__breadcrumbs a:hover {
    color: #FF8533;
}

.faq-cards__breadcrumbs span {
    margin: 0 12px;
    color: #cccccc;
}

.faq-cards__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.faq-cards__subtitle {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

/* Табы навигации для FAQ */
.faq-tabs {
    margin: 0;
    padding: 0px 0 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #111111;
}

.faq-tabs__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.faq-tabs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-between;
    width: 100%;
}

.faq-tabs__item {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    max-width: calc(14.28% - 10px);
}

.faq-tabs__button {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600 !important;
    font-family: inherit !important;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    min-height: 60px;
}

.faq-tabs__button:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    background: #ffffff;
    font-weight: 600 !important;
    font-family: inherit !important;
}

.faq-tabs__button.active {
    background: #FF6B00;
    border-color: #000000;
    color: #000000;
    font-weight: 600 !important;
    font-family: inherit !important;
}

/* Стили для второй строки (5 табов) */
.faq-tabs__item:nth-child(n+8) {
    flex: 1;
    min-width: 0;
    max-width: none;
}







/* Адаптивность для табов */
@media (max-width: 768px) {
    .faq-tabs__list {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .faq-tabs__item {
        flex-shrink: 0;
        max-width: none;
    }
    
    .faq-tabs__item:nth-child(n+8) {
        flex-shrink: 0;
        max-width: none;
    }
    
    .faq-tabs__button {
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600 !important;
        font-family: inherit !important;
        color: #000000;
        flex-shrink: 0;
        width: auto;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .faq-tabs__list {
        gap: 6px;
    }
    
    .faq-tabs__button {
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 600 !important;
        font-family: inherit !important;
        color: #000000;
    }
}



/* FAQ контент в виде карточек */
.faq-cards__content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Убираем пустое пространство после контента FAQ */
.faq-cards__content:has(.faq-cards__section:only-child) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.faq-cards__content:has(.faq-cards__section:last-child) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Принудительное отображение секций FAQ */
.faq-cards__section {
    display: block !important;
}

/* Убираем отступы у последней секции */
.faq-cards__section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Убираем отступы у единственной видимой секции */
.faq-cards__section:only-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.faq-cards__section {
    margin: 0 0 60px 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
}



/* Темные секции */
.faq-cards__section--dark {
    background: #111111;
    color: #ffffff;
    padding: 60px 0;
    margin: 0;
    width: 100vw;
    height: max-content;
    margin-left: calc(-50vw + 50%);
    position: relative;
}





/* Светлые секции */
.faq-cards__section--light {
    background: #f8f9fa;
    color: #000000;
    padding: 60px 0;
    margin: 0;
    width: 100vw;
    height: fit-content;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

/* Убираем нижний отступ у последней светлой секции */
.faq-cards__section--light:last-child {
    padding-bottom: 0;
}

/* Убираем пустое пространство после последней видимой секции */
.faq-cards__section:last-child:not([style*="display: none"]),
.faq-cards__section:last-child:not([style*="visibility: hidden"]) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Убираем отступы у единственной видимой секции */
.faq-cards__section[style*="display: block"]:only-child,
.faq-cards__section[style*="visibility: visible"]:only-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Убираем отступы у последней видимой секции в группе */
.faq-cards__section[style*="display: block"]:last-of-type,
.faq-cards__section[style*="visibility: visible"]:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.faq-cards__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 40px 0;
    padding: 0 0 16px 0;
    text-align: left;
    position: relative;
    letter-spacing: -0.02em;
    border-bottom: 3px solid #FF6B00;
    width: 100%;
    box-sizing: border-box;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}



/* Заголовки в светлых секциях */
.faq-cards__section--light .faq-cards__section-title {
    color: #000000 !important;
    border-bottom-color: #FF6B00 !important;
}



/* Сетка карточек */
.faq-cards__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 40px 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточка вопроса */
.faq-cards__card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.faq-cards__card:hover {
    border-color: #FF6B00;
    background: #ffffff;
}

.faq-cards__card.active {
    border-color: #FF6B00;
    background: #ffffff;
    border-width: 3px;
}





.faq-cards__card-header {
    padding: 24px 28px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    border-bottom: none;
}

.faq-cards__card.active .faq-cards__card-header {
    background: #ffffff;
    border-bottom: none;
}

.faq-cards__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    flex: 1;
    box-sizing: border-box;
    width: 100%;
}



.faq-cards__card-icon {
    width: 32px;
    height: 32px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.faq-cards__card-icon svg {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
    transform: rotate(0deg);
}

.faq-cards__card:hover .faq-cards__card-icon {
    background: #000000;
    color: #ffffff;
}

.faq-cards__card.active .faq-cards__card-icon {
    background: #000000;
    color: #ffffff;
}

.faq-cards__card.active .faq-cards__card-icon svg {
    transform: rotate(45deg);
}

.faq-cards__card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-cards__card.active .faq-cards__card-content {
    max-height: 1000px;
}

.faq-cards__card-content > div {
    padding: 0 28px 28px 28px;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
}

/* Стили для контента ответов */
.faq-cards__card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 20px 0;
}

.faq-cards__card-content p:last-child {
    margin-bottom: 0;
}

.faq-cards__card-content ul,
.faq-cards__card-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.faq-cards__card-content ul {
    list-style-type: disc;
}

.faq-cards__card-content ol {
    list-style-type: decimal;
}

.faq-cards__card-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 12px;
    position: relative;
}

.faq-cards__card-content li:last-child {
    margin-bottom: 0;
}

.faq-cards__card-content li strong {
    color: #FF6B00;
    font-weight: 700;
}

.faq-cards__card-content strong {
    color: #FF6B00;
    font-weight: 700;
}

.faq-cards__card-content ul ul,
.faq-cards__card-content ol ol {
    margin: 12px 0;
    padding-left: 24px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .faq-cards__grid {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .faq-cards__content-wrapper {
        padding: 30px 0 60px;
    }
    
    .faq-cards__header {
        padding: 40px 0;

        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .faq-cards__header-content {
        max-width: 900px;
        padding: 0;
    }
    
    .faq-cards__title {
        font-size: 36px;
    }
    
    .faq-cards__subtitle {
        font-size: 18px;
    }
    

    
    .faq-cards__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Заголовки в светлых секциях на планшетах */
    .faq-cards__section--light .faq-cards__section-title {
        color: #000000 !important;
        border-bottom-color: #FF6B00 !important;
    }
    
    /* Заголовки в темных секциях на планшетах */
    .faq-cards__section--dark .faq-cards__section-title {
        color: #ffffff !important;
        border-bottom-color: #FF6B00 !important;
    }
    

    
    /* Темные и светлые секции на планшетах */
    .faq-cards__section--dark,
    .faq-cards__section--light {
        padding: 40px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
    }
    
    .faq-cards__section-title,
    .faq-cards__grid {
        max-width: 900px;
    }
    
    .faq-cards__grid {
        gap: 16px;
    }
    
    .faq-cards__card-header {
        padding: 20px 24px;
    }
    
    .faq-cards__card-title {
        font-size: 16px;
    }
    
    .faq-cards__card-content > div {
        padding: 0 24px 24px 24px;
    }
    
    .faq-cards__card-content p {
        font-size: 15px;
    }
    
    .faq-cards__card-content li {
        font-size: 15px;
    }
    
    /* Темные и светлые секции на мобильных */
    .faq-cards__section--dark,
    .faq-cards__section--light {
        padding: 30px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
    }
    
    .faq-cards__section-title,
    .faq-cards__grid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    
    .faq-cards__header-content {
        max-width: 100%;
        padding: 0;
    }
    
    .faq-cards__title {
        font-size: 28px;
    }
    
    .faq-cards__section-title {
        font-size: 24px;
    }
    
    /* Заголовки в светлых секциях на мобильных */
    .faq-cards__section--light .faq-cards__section-title {
        color: #000000 !important;
        border-bottom-color: #FF6B00 !important;
    }
    
    /* Заголовки в темных секциях на мобильных */
    .faq-cards__section--dark .faq-cards__section-title {
        color: #ffffff !important;
        border-bottom-color: #FF6B00 !important;
    }
    

}