/* FAQ Hero Section */
.faq-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    }
    .faq-hero:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 0;
    animation: pulse 15s infinite alternate;
    }
    .faq-hero:after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
    z-index: 0;
    animation: pulse 20s infinite alternate-reverse;
    }
    .faq-hero .section-header {
    position: relative;
    z-index: 1;
    }
    .faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }
    /* FAQ Categories */
    .faq-section {
    padding: 4rem 0 6rem;
    background-color: white;
    position: relative;
    }
    .faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    }
    .category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid var(--light-gray);
    background-color: white;
    color: var(--gray);
    }
    .category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
    }
    .category-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    }
    /* FAQ Items */
    .faq-container {
    max-width: 900px;
    margin: 0 auto;
    }
    .faq-item {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background-color: var(--light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    }
    .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 1rem;
    }
    .faq-item.active .faq-question h3 {
    color: var(--primary);
    }
    .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.4s ease;
    }
    .faq-item.active .faq-icon {
    transform: rotate(45deg);
    }
    .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 2rem 1.5rem;
    }
    .faq-answer p {
    color: var(--gray);
    margin-bottom: 1rem;
    }
    .faq-answer p:last-child {
    margin-bottom: 0;
    }
    .faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
    }
    .faq-answer ul li {
    margin-bottom: 0.5rem;
    }
    /* FAQ Not Found */
    .faq-not-found {
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
    }
    .faq-not-found h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    }
    .faq-not-found p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }
    /* Active nav link */
    .nav-links a.active {
    color: var(--primary);
    }
    .nav-links a.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    visibility: visible;
    }
    /* Responsive Styles */
    @media (max-width: 768px) {
    .faq-hero {
    padding: 8rem 0 3rem;
    }
    .faq-hero h1 {
        font-size: 2.25rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    }
    @media (max-width: 480px) {
    .faq-hero h1 {
    font-size: 2rem;
    }
    .faq-categories {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    }