/* FAQ Page */
.faq-page {
    background-color: #f7f9fc;
    min-height: 100vh;
    padding: 80px 60px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4169b3;
    font-size: 14px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.faq-subtitle {
    font-size: 18px;
    color: #5f6368;
    margin: 0 auto;
    max-width: 720px;
    line-height: 1.7;
}

/* FAQ search/cta */
.faq-support {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-support.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-support p {
    margin: 0;
    font-size: 16px;
    color: #3c4043;
}

.faq-support .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    background-color: #4169b3;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-support .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(65, 105, 179, 0.3);
}

/* Accordion */
.faq-accordion {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(65, 105, 179, 0.12);
}

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

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question i {
    font-size: 16px;
    color: #4169b3;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: #4169b3;
}

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

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

.faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #5f6368;
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 160px;
    padding-top: 0;
}

.faq-help {
    text-align: center;
    font-size: 16px;
    color: #5f6368;
}

.faq-help a {
    color: #4169b3;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-help a:hover {
    color: #2f4f8f;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 60px 25px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-support {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
    }

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