/* FAQs Page Specific Styles */

.faqs-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-category {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-category h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category h2 i {
    color: var(--primary-color);
}

.faq-item {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-top: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--secondary-color);
}

.still-questions {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2f4a 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.still-questions h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.still-questions p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.question-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-category {
        padding: 30px 20px;
    }

    .faq-category h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .still-questions {
        padding: 40px 20px;
    }

    .question-cta {
        flex-direction: column;
    }

    .question-cta .btn {
        width: 100%;
    }
}
