.section-faq {
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

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

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.faq-intro {
    flex: 1;
}

.faq-intro h2 {
    color: white;
    font-family: "VazirBold", sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-subtitle {
    color: #53535F;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 559px;
}

.faq-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-buttons .btn {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.faq-buttons .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--second-color);
}

.faq-buttons .btn-primary:hover {
    opacity: 0.8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-buttons .btn-outline {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid #5849FF;
}

.faq-buttons .btn-outline:hover {
    opacity: 0.8;
    box-shadow: 0 10px 25px rgba(88, 73, 255, 0.3);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 666px;
    margin-right: auto;
}

.faq-item {
    background-color: #080809;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 13px 26px;
    transition: border-color 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--second-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "VazirBold", sans-serif;
}

.faq-toggle {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.faq-answer-content {
    padding-top: 16px;
    padding-right: 8px;
}

.faq-answer-content p {
    color: #D4D4D8;
    font-size: 16px;
    line-height: 2.5;
    margin: 0;
}

.faq-answer-content .highlight {
    color: var(--second-color);
}

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

    .faq-intro h2 {
        font-size: 36px;
    }

    .faq-buttons {
        flex-direction: column;
    }

    .faq-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .faq-items {
        max-width: 100%;
    }

    .faq-question-text {
        font-size: 16px;
    }
}

