        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #1a1a2e;
            background: #faf9f6;
            padding: 0 1rem;
        }
        a {
            color: #0f4c81;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #d32f2f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #0d1b2a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #d32f2f;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #e0e0e0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, #0d1b2a, #1b3a4b);
            color: #fff;
            padding: 1rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
            position: relative;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(45deg, #ffb300, #ff6f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: .9;
        }
        .my-logo i {
            -webkit-text-fill-color: #ffb300;
            margin-right: 0.3rem;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background .2s, color .2s;
        }
        nav a:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, .1);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, .08);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin-top: 0.8rem;
            font-size: 0.85rem;
            color: #bbb;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #90caf9;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            color: #ccc;
        }
        .hero {
            background: linear-gradient(145deg, #0d1b2a, #162b3a);
            color: #fff;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .hero-text {
            flex: 2 1 300px;
        }
        .hero-text h1 {
            color: #fff;
            border-left-color: #ffb300;
            font-size: 2.6rem;
            margin-top: 0;
        }
        .hero-text p {
            font-size: 1.1rem;
            opacity: .9;
        }
        .hero-img {
            flex: 1 1 260px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
        }
        .hero-img img {
            border-radius: 16px;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
            max-width: 500px;
            margin: 1.5rem 0;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0.8rem 0;
            font-size: 1rem;
            background: transparent;
            min-width: 0;
        }
        .search-box button {
            background: #0f4c81;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .search-box button:hover {
            background: #d32f2f;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
            margin-bottom: 2rem;
        }
        .content-card h2:first-child {
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #f0f4f8;
            border-radius: 16px;
            padding: 1.2rem;
            text-align: center;
            font-weight: 600;
            transition: transform .2s, box-shadow .2s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        }
        .stat-item i {
            font-size: 2rem;
            color: #0f4c81;
            margin-bottom: 0.5rem;
        }
        .stat-item .num {
            font-size: 1.8rem;
            color: #d32f2f;
        }
        .interview-block {
            background: #f5f0eb;
            border-left: 6px solid #0f4c81;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .interview-block strong {
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background: #0d1b2a;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f7f7f7;
        }
        tr:hover td {
            background: #eef3f7;
        }
        .feedback-forms {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0;
        }
        .feedback-forms>div {
            flex: 1 1 260px;
            background: #f8f6f2;
            padding: 1.5rem;
            border-radius: 16px;
        }
        .feedback-forms h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-forms form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }
        .feedback-forms input,
        .feedback-forms textarea,
        .feedback-forms select {
            padding: 0.7rem 1rem;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border .2s;
        }
        .feedback-forms input:focus,
        .feedback-forms textarea:focus,
        .feedback-forms select:focus {
            border-color: #0f4c81;
            outline: none;
        }
        .feedback-forms button {
            background: #0f4c81;
            color: #fff;
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s;
        }
        .feedback-forms button:hover {
            background: #d32f2f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color .2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ffb300;
        }
        friend-link {
            display: block;
            background: #f0f4f8;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2rem 0 1rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem;
        }
        footer {
            background: #0d1b2a;
            color: #ccc;
            padding: 2rem 1.5rem;
            border-radius: 20px 20px 0 0;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
        footer a {
            color: #90caf9;
        }
        footer a:hover {
            color: #fff;
        }
        footer .copyright {
            margin-top: 1rem;
            border-top: 1px solid #2a3a4a;
            padding-top: 1rem;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(255, 255, 255, .05);
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
                gap: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
            }
            .hero {
                padding: 1.8rem 1.2rem;
                flex-direction: column;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .content-card {
                padding: 1.2rem 1rem;
            }
            .feedback-forms {
                flex-direction: column;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
                padding: 0.8rem;
                gap: 0.5rem;
            }
            .search-box input {
                width: 100%;
                padding: 0.6rem 0;
            }
            .search-box button {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e0e7ef;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0d1b2a;
            margin-right: 0.3rem;
        }
        .highlight {
            background: #fff3cd;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.8rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.3rem;
            display: block;
        }
        .btn {
            display: inline-block;
            background: #0f4c81;
            color: #fff;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            transition: background .2s;
        }
        .btn:hover {
            background: #d32f2f;
            text-decoration: none;
            color: #fff;
        }
