*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3c6e;
            --primary-light: #2a5a9e;
            --accent: #f5a623;
            --accent-dark: #d4891a;
            --bg: #f8f9fc;
            --bg-card: #ffffff;
            --text: #1e2a3a;
            --text-light: #4a5a6e;
            --border: #e2e8f0;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-bg: linear-gradient(135deg, #0f2b4f 0%, #1a4a7a 100%);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: 70px;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }
        .my-logo:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.88);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .nav-menu a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--header-bg);
                flex-direction: column;
                padding: 20px 24px;
                gap: 16px;
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                pointer-events: none;
            }
            .nav-menu.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            .nav-menu a {
                font-size: 1.1rem;
                padding: 10px 0;
            }
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .sep {
            color: #aaa;
            margin: 0 4px;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 780px;
            margin: 0 auto 12px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #8a9aa8;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 8px;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        @media(max-width:600px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 10px;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--bg);
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .sidebar-links a:hover {
            background: var(--accent);
            color: #fff;
            text-decoration: none;
        }
        .sidebar-links a i {
            width: 20px;
            color: var(--accent);
        }
        .sidebar-links a:hover i {
            color: #fff;
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 10px;
        }
        .main-content p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: linear-gradient(135deg, #f0f4ff, #fff8e7);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: var(--primary);
        }
        .main-content .stat-badge {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .feature-img-wrap {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .feature-img-wrap img {
            width: 100%;
            display: block;
        }
        .feature-img-wrap figcaption {
            background: var(--bg-card);
            padding: 12px 18px;
            font-size: 0.85rem;
            color: var(--text-light);
            border-top: 1px solid var(--border);
            text-align: center;
        }
        .interview-block {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 32px 0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--primary);
        }
        .interview-block .quote {
            font-style: italic;
            padding-left: 16px;
            border-left: 3px solid var(--accent);
            margin: 12px 0;
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        .feedback-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            font-family: var(--font);
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--accent);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 20px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .feedback-card button:hover {
            background: var(--accent-dark);
        }
        @media(max-width:700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
        }
        .faq-item summary {
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            color: var(--accent);
            transition: transform 0.2s;
        }
        .faq-item[open] summary::before {
            transform: rotate(180deg);
        }
        .faq-item .answer {
            padding: 12px 0 4px 24px;
            color: var(--text-light);
        }
        .site-footer {
            background: var(--header-bg);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.75);
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner li {
            margin-bottom: 8px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }
        friend-link {
            display: block;
            margin: 12px 0 4px;
            font-size: 0.92rem;
        }
        friend-link a {
            color: var(--accent);
        }
        @media(max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.15rem;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .feedback-card button {
                width: 100%;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .styled-table thead {
            background: var(--primary);
            color: #fff;
        }
        .styled-table th,
        .styled-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .styled-table tbody tr:hover {
            background: #f0f4ff;
        }
