/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.faq .section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 500;
    padding-right: 40px;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 30px;
    overflow: hidden;
}

.collapsing {
    transition: height 0.4s ease;
}

@media (max-width: 991.98px) {
    .faq .section-title {
        font-size: 3.2rem;
    }

    .faq-question span {
        font-size: 1.3rem;
    }

    .faq-content {
        font-size: 1rem;
        padding-right: 40px;
    }
}

@media (max-width: 767.98px) {
    .faq .section-title {
        font-size: 2.8rem;
    }

    .faq-question {
        padding: 25px 0;
    }

    .faq-question span {
        font-size: 1.2rem;
        padding-right: 30px;
    }

    .faq-answer {
        padding-bottom: 25px;
    }
}

@media (max-width: 575.98px) {
    .faq .section-title {
        font-size: 2.4rem;
    }

    .faq-question span {
        font-size: 1.1rem;
        padding-right: 20px;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-content {
        padding-right: 20px;
    }
} 