.faq-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-main-title {
    font-family: serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 25px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p, .faq-answer ol {
    padding-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.faq-answer ol {
    padding-left: 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-main-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-main-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

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

    .faq-answer p, .faq-answer ol {
        font-size: 14px;
        padding-bottom: 20px;
    }

    .faq-icon {
        width: 16px;
        height: 16px;
    }
}