
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(145deg, #eef2f5 0%, #d9e0e6 100%);
            font-family: 'Segoe UI', 'Roboto', 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            padding: 2rem 1.5rem;
            color: #1e2a3a;
        }

        .faq-container {
            max-width: 1100px;
            margin: 0 auto;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(2px);
            border-radius: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.05);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.6);
        }

        .faq-header {
            background: #0b2b2f;
            background-image: linear-gradient(135deg, #0a2a2e 0%, #123b3f 100%);
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            border-bottom: 3px solid #e5b13b;
        }

        .faq-header h1 {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: #f5f3e9;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .faq-header p {
            color: #cddfda;
            font-size: 1rem;
            font-weight: 400;
        }

        .faq-panel {
            padding: 1.8rem 2rem 2.5rem;
            background: #ffffff;
        }

        .accordion-item {
            border-bottom: 1px solid #e9edf2;
            transition: all 0.2s;
        }

        .accordion-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0.5rem 1.2rem 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            color: #1e3b3f;
            transition: background 0.2s;
            user-select: none;
        }

        .accordion-question:hover {
            background: #f9fbfd;
            padding-left: 0.5rem;
            margin-left: -0.5rem;
            border-radius: 12px;
        }

        .question-text {
            flex: 1;
            line-height: 1.4;
            padding-right: 1rem;
        }

        .accordion-icon {
            font-size: 1.5rem;
            font-weight: 400;
            color: #b78d3a;
            transition: transform 0.2s;
            width: 28px;
            text-align: center;
        }

        .accordion-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            background: #fefefc;
            border-radius: 14px;
            margin: 0 0 0 0;
        }

        .accordion-answer.show {
            max-height: 800px;
        }

        .answer-content {
            padding: 0.2rem 0.5rem 1.2rem 1rem;
            font-size: 0.95rem;
            line-height: 1.55;
            color: #2d3e44;
            border-left: 3px solid #d6bc7a;
            margin: 0 0 0.5rem 0.5rem;
            background: #fefef7;
            border-radius: 0 12px 12px 0;
        }

        .answer-content p {
            margin-bottom: 0.75rem;
        }

        .answer-content strong {
            color: #b55b1a;
        }

        footer {
            text-align: center;
            padding: 1rem 1rem 1.5rem;
            font-size: 0.75rem;
            color: #6b7f86;
            background: #f5f7f9;
            border-top: 1px solid #e2e8f0;
        }

        @media (max-width: 680px) {
            body {
                padding: 1rem;
            }
            .faq-panel {
                padding: 1rem 1.2rem;
            }
            .accordion-question {
                font-size: 0.95rem;
            }
        }
    