/* FAQ Page Styles */
.faq-hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.faq-hero h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.faq-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* FAQ Content */
.faq-content {
    padding: var(--spacing-xxl) 0;
}

.faq-category {
    margin-bottom: var(--spacing-xxl);
}

.faq-category h2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

/* FAQ Items */
.faq-item {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

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

.faq-item.active .faq-question {
    color: var(--primary-color);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer > * {
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: var(--spacing-md);
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
}

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

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

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: var(--spacing-xxl);
    background: var(--background-secondary);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xxl);
}

.faq-cta h2 {
    margin-bottom: var(--spacing-sm);
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: slideDown 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-category h2 i {
        font-size: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .faq-answer > * {
        padding: 0 var(--spacing-md) var(--spacing-sm);
    }
    
    .faq-cta {
        padding: var(--spacing-lg);
    }
} 