        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: #1e2a3a;
            background: #f8f9fc;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a5c8c;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #0d3b5e;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b2a40 0%, #1a4a6e 100%);
            color: #fff;
            padding: 0 0 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 20px 8px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f9d976, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: opacity 0.3s;
            font-family: 'Georgia', 'Times New Roman', serif;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: #b8d8f0;
            color: #b8d8f0;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: 'Segoe UI', sans-serif;
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 0 16px;
            min-height: 48px;
            backdrop-filter: blur(4px);
        }
        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            padding: 6px 0;
            margin: 0;
        }
        .main-nav ul li a {
            color: #e8f0fe;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
            display: inline-block;
        }
        .main-nav ul li a:hover,
        .main-nav ul li a:focus {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-actions .search-toggle,
        .nav-actions .menu-toggle {
            background: rgba(255, 255, 255, 0.12);
            border: none;
            color: #fff;
            padding: 8px 14px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-actions .search-toggle:hover,
        .nav-actions .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        .menu-toggle .fa-bars {
            font-size: 1.3rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(11, 42, 64, 0.98);
            border-radius: 0 0 20px 20px;
            padding: 12px 20px 20px 20px;
            gap: 6px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
        }
        .nav-mobile.open {
            max-height: 800px;
            padding: 16px 20px 24px 20px;
            display: flex;
        }
        .nav-mobile a {
            color: #e8f0fe;
            padding: 12px 18px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #eef2f7;
            padding: 10px 0;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: 0.87rem;
            color: #4a5a6a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #1a5c8c;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #8a9aaa;
            margin: 0 4px;
        }
        .hero-section {
            background: linear-gradient(145deg, #e6edf6 0%, #d4e0ed 100%);
            padding: 40px 20px 50px 20px;
            border-bottom: 1px solid #cbd5e1;
            position: relative;
        }
        .hero-section .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0b2a40;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        .hero-text h1 .highlight {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #2c3e50;
            max-width: 560px;
            margin-bottom: 24px;
        }
        .hero-text .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-primary {
            display: inline-block;
            background: #1a5c8c;
            color: #fff;
            padding: 14px 34px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: #0d3b5e;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            display: inline-block;
            background: transparent;
            color: #1a5c8c;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1.05rem;
            border: 2px solid #1a5c8c;
            transition: background 0.3s, color 0.3s;
        }
        .btn-outline:hover {
            background: #1a5c8c;
            color: #fff;
            text-decoration: none;
        }
        .hero-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            background: #dce3ec;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 250px;
        }
        .search-panel {
            background: #fff;
            border-radius: 20px;
            padding: 30px 32px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            margin: -30px auto 30px auto;
            max-width: 700px;
            position: relative;
            z-index: 10;
            border: 1px solid #e2e8f0;
        }
        .search-panel form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-panel input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 16px 22px;
            border: 2px solid #dce3ec;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #f8f9fc;
        }
        .search-panel input[type="text"]:focus {
            border-color: #1a5c8c;
            background: #fff;
        }
        .search-panel button {
            background: #1a5c8c;
            color: #fff;
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-panel button:hover {
            background: #0d3b5e;
            transform: translateY(-2px);
        }
        .content-section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0b2a40;
            margin-bottom: 16px;
            line-height: 1.25;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #4a5a6a;
            margin-bottom: 32px;
            max-width: 720px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 26px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f7;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .card h3 {
            font-size: 1.4rem;
            color: #0b2a40;
            margin-bottom: 12px;
        }
        .card h4 {
            font-size: 1.1rem;
            color: #1a4a6e;
            margin-bottom: 8px;
        }
        .card p {
            color: #3a4a5a;
            margin-bottom: 8px;
        }
        .card .icon-lg {
            font-size: 2.4rem;
            color: #1a5c8c;
            margin-bottom: 14px;
            display: inline-block;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b2a40;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #5a6a7a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .interview-block {
            background: linear-gradient(135deg, #f0f4fa, #e6edf6);
            border-radius: 24px;
            padding: 36px 32px;
            border-left: 6px solid #1a5c8c;
            margin: 30px 0;
        }
        .interview-block blockquote {
            font-size: 1.2rem;
            font-style: italic;
            color: #1e2a3a;
            quotes: "“" "”" "‘" "’";
            margin-bottom: 12px;
        }
        .interview-block blockquote::before {
            content: "“";
            font-size: 3rem;
            color: #1a5c8c;
            line-height: 0.5;
            vertical-align: -0.4em;
            margin-right: 6px;
        }
        .interview-block .cite {
            font-weight: 600;
            color: #0b2a40;
            margin-top: 8px;
            display: block;
        }
        .rating-area,
        .comment-area {
            background: #fff;
            border-radius: 20px;
            padding: 30px 28px;
            border: 1px solid #e2e8f0;
            margin: 20px 0;
        }
        .rating-area .stars {
            display: flex;
            gap: 8px;
            margin: 12px 0 16px 0;
            font-size: 2rem;
            color: #dce3ec;
            cursor: pointer;
        }
        .rating-area .stars .fa-star {
            transition: color 0.2s;
        }
        .rating-area .stars .fa-star.active,
        .rating-area .stars .fa-star:hover,
        .rating-area .stars .fa-star:hover~.fa-star {
            color: #f39c12;
        }
        .rating-area .stars:hover .fa-star {
            color: #f39c12;
        }
        .rating-area .stars .fa-star:hover~.fa-star {
            color: #dce3ec;
        }
        .rating-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .rating-area form input,
        .rating-area form textarea,
        .comment-area form input,
        .comment-area form textarea {
            padding: 14px 18px;
            border: 2px solid #dce3ec;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border 0.3s;
            background: #f8f9fc;
        }
        .rating-area form input:focus,
        .rating-area form textarea:focus,
        .comment-area form input:focus,
        .comment-area form textarea:focus {
            border-color: #1a5c8c;
            background: #fff;
            outline: none;
        }
        .rating-area form button,
        .comment-area form button {
            align-self: flex-start;
            background: #1a5c8c;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-area form button:hover,
        .comment-area form button:hover {
            background: #0d3b5e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            margin: 24px 0;
        }
        .data-table th {
            background: #0b2a40;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #eef2f7;
            color: #2c3e50;
        }
        .data-table tr:hover td {
            background: #f4f8fe;
        }
        .site-footer {
            background: #0b2a40;
            color: #c8d8e8;
            padding: 40px 20px 20px 20px;
            margin-top: 40px;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .site-footer h4 {
            color: #f0f6fc;
            margin-bottom: 16px;
            font-size: 1.2rem;
        }
        .site-footer a {
            color: #a8c8e8;
        }
        .site-footer a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            margin-top: 18px;
            padding: 18px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding: 24px 0 8px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 24px;
            color: #8a9aaa;
            font-size: 0.9rem;
        }
        .copyright a {
            color: #b8d8f0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #5a6a7a;
            background: #eef2f7;
            padding: 8px 18px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 18px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 1024px) {
            .hero-section .container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                padding: 10px 16px 4px 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .main-nav ul {
                display: none;
            }
            .main-nav {
                justify-content: flex-end;
                padding: 4px 10px;
                min-height: 40px;
            }
            .nav-actions .menu-toggle {
                display: flex !important;
            }
            .nav-mobile {
                display: flex;
            }
            .nav-mobile:not(.open) {
                max-height: 0;
                padding: 0 20px;
                overflow: hidden;
                border-radius: 0;
            }
            .hero-text h1 {
                font-size: 1.9rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-panel {
                padding: 20px;
                margin: -20px 10px 20px 10px;
            }
            .search-panel form {
                flex-direction: column;
            }
            .search-panel input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .search-panel button {
                width: 100%;
                justify-content: center;
            }
            .rating-area .stars {
                font-size: 1.6rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
            .interview-block {
                padding: 24px 18px;
            }
            .interview-block blockquote {
                font-size: 1.05rem;
            }
        }
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .card {
                padding: 20px 18px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .gap-10 {
            gap: 10px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .site-header a {
                color: #000;
            }
            .nav-actions,
            .search-panel form button,
            .rating-area form button,
            .comment-area form button {
                display: none;
            }
            .hero-section {
                background: #f0f0f0;
            }
            .card {
                box-shadow: none;
                border: 1px solid #ccc;
            }
            .card:hover {
                transform: none;
            }
            .site-footer {
                background: #eee;
                color: #000;
            }
            .site-footer a {
                color: #00c;
            }
        }
        .menu-toggle {
            display: flex;
        }
        @media (min-width: 769px) {
            .menu-toggle {
                display: none !important;
            }
            .nav-mobile {
                display: none !important;
            }
        }
        .star-group {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-group input {
            display: none;
        }
        .star-group label {
            font-size: 2rem;
            color: #dce3ec;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-group label:hover,
        .star-group label:hover~label,
        .star-group input:checked~label {
            color: #f39c12;
        }
        .star-group label:hover {
            transform: scale(1.1);
        }
