.faq-page {
    background: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5,33,48,0.08);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(5,33,48,0.12);
}

.faq-item__question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faq-item__question span:first-child {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--color-dark);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-dark);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item__answer p,
.faq-item__answer li {
    font-size: 16px;
    line-height: 1.75;
    color: #5c6b74;
}

.faq-item__answer ul,
.faq-item__answer ol {
    padding-left: 20px;
}

.faq-item.is-open .faq-item__answer {
    max-height: 1200px;
}

.faq-item__answer > * {
    padding: 0 30px 30px;
}

@media (max-width: 768px) {
    .faq-item {
        border-radius: 20px;
    }

    .faq-item__question {
        padding: 22px 20px;
    }

    .faq-item__question span:first-child {
        font-size: 17px;
    }

    .faq-item__icon {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .faq-item__answer > * {
        padding: 0 20px 24px;
    }

    .faq-item__answer p,
    .faq-item__answer li {
        font-size: 15px;
        line-height: 1.65;
    }
}