/* ========== FAQ SECTION ========== */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.faq-item {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #ececec;
}

.faq-question {
    width: 100%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
    transition: background 0.3s;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(0,0,0,0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1.5;
    padding: 0 24px 16px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.faq-cta p {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 14px 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 14px;
        font-size: 15px;
    }
}