﻿        .faq-container {
            max-width: 900px;
            margin: 60px auto 40px;
            padding: 0 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .faq-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
        }

        .faq-section {
            margin-bottom: 40px;
        }

        .faq-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #3b82f6;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 1px solid #e5e7eb;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f9fafb;
            font-weight: 600;
            color: #1f2937;
            user-select: none;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: #3b82f6;
            font-size: 1.1rem;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 1000px;
        }

        .faq-answer-content {
            padding: 20px;
            color: #4b5563;
            line-height: 1.7;
            background: white;
        }

        .faq-answer-content p {
            margin: 0 0 12px 0;
        }

        .faq-answer-content p:last-child {
            margin-bottom: 0;
        }

        .highlight {
            background: #fef3c7;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .faq-container {
                margin-top: 40px;
            }

            .faq-title {
                font-size: 1.8rem;
            }

            .faq-question {
                padding: 14px 16px;
            }

            .faq-answer-content {
                padding: 16px;
            }
        }
