.faq-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    font-family: 'At Aero TRIAL';
}

.faq-title {
    font-size: 56px;
    line-height: 64px;
    text-align: center;
    color: #e6421d;
    font-family: 'At Aero TRIAL';
    display: block;
    margin-bottom: 64px;
}

.faq-columns {
    display: flex;
    gap: 56px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #141414;
    border-radius: 4px;
    padding: 16px;
    color: #fff;
    border: 1px solid rgba(230, 66, 29, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(230, 66, 29, 0.4);
    background-color: #1a1a1a;
}

.faq-item.expanded {
    border-color: #e6421d;
    background-color: rgba(230, 66, 29, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
    color: #e6421d;
}

.faq-question p {
    margin: 0;
}

.faq-question img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-question img {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 14px;
    line-height: 22px;
    color: #d0d0d0;
    margin-top: 12px;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item:not(.expanded) .faq-answer {
    display: none;
    max-height: 0;
}

@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
        gap: 32px;
    }

    .faq-title {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 32px;
    }

    .faq-item {
        padding: 12px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 20px;
    }
}