        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f6f9fc;
            color: #1a2634;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1a6ea0;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d3b5c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            padding: 0 2rem 2rem;
        }
        header {
            padding: 1.5rem 0 0.5rem;
            border-bottom: 2px solid #eef3f7;
            position: relative;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #d97706;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: #eef3f7;
            color: #1a6ea0;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #1a2634;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef3f7;
        }
        .breadcrumb {
            padding: 1rem 0 0.8rem;
            font-size: 0.9rem;
            color: #5b6f7e;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #1a6ea0;
        }
        .breadcrumb span {
            color: #8a9aa8;
        }
        main {
            padding: 2rem 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 1.8rem;
            background: linear-gradient(135deg, #1a2634, #2d4b63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.8rem 0 1.2rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f59e0b;
            color: #1a2634;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: #2d4b63;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.8rem;
            color: #3d5a73;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2c3e50;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
            color: #2c3e50;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .highlight {
            background: #fef9e7;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.4rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #f0f6fb;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            text-align: center;
            border-left: 4px solid #f59e0b;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #1a6ea0;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5b6f7e;
            font-weight: 500;
        }
        .interview-box {
            background: #f4f9ff;
            padding: 1.6rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border-left: 6px solid #f59e0b;
        }
        .interview-box .name {
            font-weight: 700;
            color: #1a2634;
        }
        .interview-box .title {
            color: #5b6f7e;
            font-size: 0.9rem;
        }
        .tip-list li {
            margin-bottom: 0.8rem;
        }
        .hero-img {
            margin: 2rem 0;
            border-radius: 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .search-section {
            background: #f0f6fb;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            margin: 2.8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            flex: 1 1 300px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dce4ec;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #f59e0b;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #1a6ea0;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #0d3b5c;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.8rem 0;
        }
        .feedback-card {
            background: #fafcfe;
            padding: 1.6rem 2rem;
            border-radius: 20px;
            border: 1px solid #e8eef4;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #dce4ec;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f59e0b;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.8rem;
            background: #f59e0b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #d97706;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #e0cfa0;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #eef3f7;
            text-align: center;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            font-size: 0.95rem;
            color: #5b6f7e;
        }
        friend-link a {
            margin: 0 0.6rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background: #f0f6fb;
            display: inline-block;
            margin-bottom: 0.4rem;
        }
        friend-link a:hover {
            background: #e0eaf3;
            text-decoration: none;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7a8a9a;
            padding-top: 0.8rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0 1rem 1.5rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.4rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.6rem 1rem;
                border-radius: 12px;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: unset;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-box {
                padding: 1rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .feedback-card {
                padding: 1rem 1.2rem;
            }
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #e8f0f8;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #1a6ea0;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafcfe;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8eef4;
        }
        th {
            background: #eef3f7;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .btn-outline {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border: 2px solid #1a6ea0;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: #1a6ea0;
            color: #fff;
            text-decoration: none;
        }
        .fa-li {
            margin-right: 0.6rem;
        }
