.special-faq-section {
    display: grid;
    grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
    gap: 64px;
    padding: 62px 0;
    border-bottom: 1px solid #e5e9eb;
    scroll-margin-top: 90px;
}

.special-faq-section-heading h2 {
    margin: 0;
    color: #29343b;
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.special-faq-section-heading p {
    margin: 10px 0 0;
    color: #79838a;
    font-size: 0.78rem;
    line-height: 1.7;
}

.special-faq-list {
    border-top: 1px solid #dce2e5;
}

.special-faq-list details {
    border-bottom: 1px solid #dce2e5;
}

.special-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 21px 4px;
    color: #303b42;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
    cursor: pointer;
    list-style: none;
}

.special-faq-list summary::-webkit-details-marker {
    display: none;
}

.special-faq-list summary:hover {
    color: #486575;
}

.special-faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.special-faq-icon::before,
.special-faq-icon::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 1px;
    background: #76858e;
    transition: transform 0.2s ease;
}

.special-faq-icon::after {
    transform: rotate(90deg);
}

.special-faq-list details[open] .special-faq-icon::after {
    transform: rotate(0);
}

.special-faq-answer {
    padding: 0 38px 24px 4px;
}

.special-faq-answer p {
    margin: 0;
    color: #657078;
    font-size: 0.84rem;
    line-height: 1.9;
}

.special-faq-answer > a {
    display: inline-block;
    margin-top: 14px;
    color: #4a6878;
    font-size: 0.77rem;
    font-weight: 600;
}

.special-faq-answer > a:hover,
.special-faq-related-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.special-faq-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 15px;
}

.special-faq-related-links a {
    color: #4a6878;
    font-size: 0.77rem;
    font-weight: 600;
}

@media (max-width: 760px) {
    .special-faq-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 44px 0;
    }

    .special-faq-list summary {
        padding: 18px 2px;
        font-size: 0.86rem;
    }

    .special-faq-answer {
        padding: 0 26px 21px 2px;
    }
}