/* Theme Variables from theme.json */
:root {
    /* Colors */
    --color-primary: #34B8C1;
    --color-primary-dark: #27949C;
    --color-primary-light: #6DD6DC;
    --color-accent: #FF6B35;
    --color-bg: #F7F9FA;
    --color-surface: #FFFFFF;
    --color-error: #E53E3E;
    --color-warning: #F2A900;
    --color-success: #2F9E44;
    --text-primary: #0F1720;
    --text-secondary: #5B6B73;
    --color-border: #E1E6E8;
    
    /* Typography */
    --font-family: Inter, Helvetica, Arial, sans-serif;
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(13, 30, 35, 0.06);
    --shadow-md: 0 6px 18px rgba(13, 30, 35, 0.08);
    --shadow-lg: 0 10px 40px rgba(13, 30, 35, 0.12);
}

/* FAQ Content */
.faq-content {
    padding: 5rem 0;
    background: var(--color-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--color-primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-family);
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--text-secondary);
    transition: transform 0.3s ease, stroke 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Help Section */
.help-section {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary-light);
}

.help-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.help-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design - Content Section */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.75rem;
    }

    .help-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .faq-content {
        padding: 4rem 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
}

