/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--off-white) 50%, var(--light-blue) 100%);
    padding: 4rem 0;
    text-align: center;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--grey-500);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title i {
    color: var(--blue-500);
}

/* FAQ Item */
.faq-item {
    background: white;
    border: 1px solid var(--grey-300);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-500);
}

.faq-question i {
    color: var(--grey-400);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question[aria-expanded="true"] {
    color: var(--blue-500);
    background: var(--blue-50);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--blue-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-answer p {
    padding: 1.25rem;
    padding-top: 0;
    color: var(--grey-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        padding-top: 0;
    }
}
