/* FAQ Page Styling */
.faq-page {
    padding: 60px 0 100px;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-cyan);
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.faq-answer a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    color: var(--white);
    margin-top: 60px;
}

.faq-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-page {
        padding: 40px 0 60px;
    }

    .category-title {
        font-size: 24px;
    }

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

    .faq-answer p {
        font-size: 15px;
    }

    .faq-cta {
        padding: 40px 24px;
    }

    .faq-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 20px;
    }

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

    .faq-cta h2 {
        font-size: 24px;
    }

    .faq-cta p {
        font-size: 16px;
    }
}

