/* faq.css — page-specific styles */

/* FAQ Specific Styles */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1.5rem 4rem;
        }

        .faq-category {
            margin-bottom: 3rem;
        }

        .faq-category h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

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

        .faq-item.active {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-lg);
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition);
            gap: 1rem;
        }

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

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s;
            flex-shrink: 0;
            color: var(--text-secondary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

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

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

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-answer-content p {
            margin-bottom: 1rem;
        }

        .faq-answer-content ul {
            margin: 1rem 0 1rem 1.5rem;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
        }

        .faq-answer-content strong {
            color: var(--text-primary);
        }

        /* Highlight box */
        .highlight-box {
            background: var(--primary-50);
            border-radius: var(--radius);
            padding: 1rem;
            margin: 1rem 0;
            border-left: 3px solid var(--primary);
        }

        .warning-box {
            background: #FEF3C7;
            border-left-color: var(--warning);
        }
