        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #ffffff;
            color: #1e1e2f;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .site-header {
            background-color: #ffffff;
            border-bottom: 1px solid #eaeef2;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background-color: rgba(255, 255, 255, 0.96);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-svg {
            width: 36px;
            height: 36px;
            display: block;
        }

        .logo-text {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #0a2540;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c3e4e;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #1c6e8f;
        }

        .lang-switch {
            display: flex;
            gap: 12px;
            border-left: 1px solid #dce5ec;
            padding-left: 24px;
        }

        .lang-switch span {
            font-size: 0.85rem;
            font-weight: 500;
            color: #5a6e7c;
            cursor: default;
        }

        .lang-switch .active-lang {
            color: #1c6e8f;
            font-weight: 600;
        }

        .page-hero {
            background: linear-gradient(145deg, #f7fafd 0%, #ffffff 100%);
            padding: 56px 0 48px;
            text-align: center;
            border-bottom: 1px solid #e2edf2;
        }

        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #0a2540;
            margin-bottom: 16px;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: #3e5a76;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-search {
            background: #ffffff;
            padding: 32px 0 16px;
            border-bottom: 1px solid #eef2f8;
        }

        .search-box {
            max-width: 560px;
            margin: 0 auto;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 16px 24px;
            border-radius: 60px;
            border: 1.5px solid #dce5ec;
            font-size: 1rem;
            background: #ffffff;
            transition: all 0.2s;
            outline: none;
        }

        .search-box input:focus {
            border-color: #1c6e8f;
            box-shadow: 0 0 0 3px rgba(28,110,143,0.1);
        }

        .faq-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin: 32px 0 20px;
        }

        .cat-btn {
            background: #f0f4f9;
            border: none;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 500;
            color: #2c5a74;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
        }

        .cat-btn.active, .cat-btn:hover {
            background: #1c6e8f;
            color: white;
        }

        .faq-main {
            padding: 48px 0 80px;
        }

        .faq-section {
            margin-bottom: 56px;
            scroll-margin-top: 100px;
        }

        .faq-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: #0a2540;
            border-left: 5px solid #1c6e8f;
            padding-left: 20px;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid #eaf1f7;
            transition: box-shadow 0.2s;
        }

        .faq-question {
            padding: 22px 28px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f2b3d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-question:hover {
            background-color: #fbfeff;
        }

        .faq-question .icon {
            font-size: 1.5rem;
            color: #7f9ab3;
            transition: transform 0.2s;
        }

        .faq-answer {
            padding: 0 28px 22px 28px;
            color: #3e5a76;
            border-top: 1px solid #ecf3f8;
            display: none;
            line-height: 1.6;
        }

        .faq-answer p {
            margin-top: 16px;
        }

        .faq-answer a {
            color: #1c6e8f;
            text-decoration: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question .icon {
            transform: rotate(45deg);
        }

        .contact-support {
            background: #f1f7fc;
            border-radius: 32px;
            padding: 48px 32px;
            text-align: center;
            margin-top: 48px;
        }

        .contact-support h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        .btn-support {
            background: #0f2b3d;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-block;
            margin-top: 16px;
            font-weight: 600;
        }

        .site-footer {
            background: #0a1c2a;
            color: #cddfe7;
            padding: 56px 0 32px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-col {
            flex: 1;
            min-width: 150px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .footer-col a {
            display: block;
            color: #b9d0df;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #1e3a4a;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                width: 100%;
                justify-content: space-between;
            }
            .lang-switch {
                border-left: none;
                padding-left: 0;
                margin-top: 8px;
            }
            .faq-question {
                padding: 18px 20px;
            }
        }
    