* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 28px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eef2f7;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0b1d3a, #1e4a7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0b429;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1e2a3a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2f7;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            text-decoration: none;
            color: #2c3e5a;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            background: #eef2f7;
            color: #0b1d3a;
        }
        .nav-menu li a i {
            margin-right: 6px;
            color: #f0b429;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 14px 0 10px;
            font-size: 0.9rem;
            color: #5a6e85;
            border-bottom: 1px solid #eef2f7;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #1e4a7a;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8a9bb0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b1d3a;
            margin: 20px 0 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #f0b429;
            margin-right: 10px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0b1d3a;
            margin: 40px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #f0b429;
            display: inline-block;
        }
        h2 i {
            color: #f0b429;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e3a5a;
            margin: 28px 0 10px;
        }
        h3 i {
            color: #f0b429;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c4a6e;
            margin: 22px 0 8px;
        }
        h4 i {
            color: #f0b429;
            margin-right: 6px;
        }
        p {
            margin: 0 0 18px;
            color: #2c3e5a;
            font-size: 1.05rem;
        }
        .hero-img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 18px;
            margin: 18px 0 28px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid #eef2f7;
        }
        .highlight-box {
            background: #f0f4fe;
            border-left: 5px solid #f0b429;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box i {
            color: #f0b429;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #f8faff;
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #e6edf6;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0b1d3a;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #5a6e85;
            margin-top: 4px;
        }
        .stat-card i {
            font-size: 2rem;
            color: #f0b429;
            margin-bottom: 8px;
        }
        .interview-block {
            background: #f8faff;
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid #e6edf6;
            margin: 24px 0;
            position: relative;
        }
        .interview-block::before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 2rem;
            color: #f0b429;
            opacity: 0.3;
            position: absolute;
            top: 12px;
            left: 16px;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #0b1d3a;
            margin-top: 8px;
        }
        .interview-block .speaker i {
            color: #f0b429;
            margin-right: 6px;
        }
        .faq-item {
            border-bottom: 1px solid #eef2f7;
            padding: 16px 0;
        }
        .faq-item strong {
            font-size: 1.05rem;
            color: #0b1d3a;
            display: block;
            margin-bottom: 4px;
        }
        .faq-item strong i {
            color: #f0b429;
            margin-right: 8px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            padding: 12px 0;
            list-style: none;
        }
        .link-list li a {
            text-decoration: none;
            color: #1e4a7a;
            font-weight: 500;
            border-bottom: 1px dotted transparent;
            transition: border-color 0.2s;
        }
        .link-list li a:hover {
            border-bottom-color: #1e4a7a;
        }
        .link-list li a i {
            color: #f0b429;
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0b1d3a;
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            text-decoration: none;
        }
        .btn:hover {
            background: #1e4a7a;
            transform: scale(1.02);
        }
        .btn i {
            color: #f0b429;
        }
        .form-group {
            margin: 18px 0;
        }
        .form-group label {
            font-weight: 600;
            color: #1e2a3a;
            display: block;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #dce3ed;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fafcff;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0b429;
            box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #dce3ed;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0b429;
            transform: scale(1.1);
        }
        .comment-item {
            background: #f8faff;
            padding: 14px 18px;
            border-radius: 12px;
            margin: 12px 0;
            border: 1px solid #eef2f7;
        }
        .comment-item .author {
            font-weight: 700;
            color: #0b1d3a;
        }
        .comment-item .date {
            font-size: 0.85rem;
            color: #8a9bb0;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
        }
        .site-footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #eef2f7;
        }
        .site-footer friend-link {
            display: block;
            padding: 16px 0;
            font-weight: 600;
            color: #0b1d3a;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #1e4a7a;
            text-decoration: none;
            font-weight: 500;
        }
        .site-footer friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            color: #5a6e85;
            font-size: 0.9rem;
            border-top: 1px solid #eef2f7;
            margin-top: 12px;
        }
        .copyright i {
            color: #f0b429;
            margin: 0 4px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 14px 16px;
                border-radius: 16px;
                margin-top: 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 12px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 10px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 10px 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero-img {
                max-height: 220px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #eef2f7;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a6e85;
            margin-bottom: 16px;
        }
        .last-updated i {
            color: #f0b429;
        }
