.faq-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .faq-header {
            background-color: #00aec3;
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-header:hover {
            background-color: #74c9e3;
        }

        .faq-title {
            font-family: 'Encode Sans', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: #ffffff;
            margin: 0;
        }

        .faq-toggle {
            font-size: 24px;
            color: #ffffff;
            font-weight: 300;
            transition: transform 0.3s ease;
            user-select: none;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-content.active {
            max-height: 5000px;
        }

        .faq-inner {
            padding: 30px;
        }

        .faq-intro {
            margin-bottom: 30px;
            padding: 15px 20px;
            background-color: #cae7ea;
            border-left: 4px solid #00aec3;
            border-radius: 4px;
        }

        .faq-intro p {
            font-size: 14px;
            color: #000000;
            line-height: 1.6;
        }

        .faq-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #cae7ea;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .faq-question {
            font-family: 'Encode Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #00aec3;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .question-number {
            font-family: 'Encode Sans', sans-serif;
            font-weight: 800;
            color: #00aec3;
            min-width: 30px;
            font-size: 16px;
            flex-shrink: 0;
        }

        .question-text {
            flex: 1;
        }

        .faq-answer {
            font-size: 14px;
            color: #000000;
            line-height: 1.7;
            margin-left: 40px;
        }

        .faq-answer ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .faq-answer li {
            margin-bottom: 8px;
        }

        .faq-answer strong {
            font-weight: 700;
            color: #000000;
        }

        .faq-answer a {
            color: #00aec3;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.2s ease;
        }

        .faq-answer a:hover {
            color: #74c9e3;
            text-decoration: underline;
        }

        .highlight-box {
            background-color: #cae7ea;
            padding: 12px 15px;
            margin: 10px 0;
            border-radius: 4px;
            border-left: 3px solid #00aec3;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-header {
                padding: 15px 20px;
            }

            .faq-title {
                font-size: 16px;
            }

            .faq-inner {
                padding: 20px;
            }

            .faq-question {
                font-size: 14px;
            }

            .faq-answer {
                font-size: 13px;
                margin-left: 30px;
            }

            .question-number {
                min-width: 25px;
            }
        }