        *,
        *::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, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f4f7fc;
            color: #1a1e2c;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0052a5;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e2231a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1a33;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-left: 5px solid #e2231a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.75rem 0;
            color: #003366;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.5rem 0 0.5rem 0;
            color: #1a3d5c;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #003366;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a33 0%, #1a2d4a 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(135deg, #f5a623, #e2231a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8edf5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f5a623;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #e2231a;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #e8edf5;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0d9e6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #0052a5;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .search-section {
            background: #fff;
            padding: 1.25rem 0;
            border-bottom: 1px solid #dce3ef;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1.5rem;
            border: 1px solid #ccd5e3;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #0052a5;
        }
        .search-form button {
            background: #0052a5;
            color: #fff;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            border-radius: 0 50px 50px 0;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #003d7a;
        }
        .hero-figure {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #0b1a33;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            display: block;
        }
        .hero-figure figcaption {
            padding: 0.9rem 1.5rem;
            background: rgba(11, 26, 51, 0.85);
            color: #e8edf5;
            font-size: 0.95rem;
            text-align: center;
        }
        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s;
        }
        .content-card:hover {
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.07);
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.25rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #f0f4fa;
            padding: 1.25rem 1rem;
            border-radius: 12px;
            text-align: center;
            border-left: 4px solid #e2231a;
        }
        .stat-item .number {
            font-size: 2rem;
            font-weight: 800;
            color: #003366;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #4a5b73;
            margin-top: 0.25rem;
        }
        .interview-box {
            background: #f8faff;
            border-left: 5px solid #f5a623;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 2rem 0;
            font-style: italic;
        }
        .interview-box .attribution {
            margin-top: 0.75rem;
            font-style: normal;
            font-weight: 600;
            color: #003366;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6ecf5;
        }
        .feedback-card h3 {
            margin-top: 0;
            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.75rem 1rem;
            border: 1px solid #ccd5e3;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #0052a5;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: #0052a5;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .feedback-card button:hover {
            background: #003d7a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccd5e3;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5a623;
        }
        friend-link {
            display: block;
            padding: 1.75rem 0;
            border-top: 1px solid #dce3ef;
            margin-top: 2rem;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #003366;
            margin-bottom: 0.75rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link .fl-list a {
            color: #0052a5;
            font-weight: 500;
        }
        friend-link .fl-list a:hover {
            color: #e2231a;
        }
        .site-footer {
            background: #0b1a33;
            color: #b8c7dd;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #1f3550;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            margin-bottom: 0.5rem;
        }
        .site-footer .footer-links a {
            color: #8da4c7;
        }
        .site-footer .footer-links a:hover {
            color: #f5a623;
        }
        @media (max-width: 820px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem 0;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-card {
                padding: 1.25rem 1.2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            .search-form input {
                padding: 0.65rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .badge {
            display: inline-block;
            background: #e2231a;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .last-update {
            font-size: 0.85rem;
            color: #6f7d95;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 1rem 0 0.25rem 0;
        }
        .last-update i {
            color: #f5a623;
        }
        .section-marker {
            color: #e2231a;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1rem 0 1.5rem 0;
            list-style: none;
            padding: 0;
        }
        .link-list-inline li a {
            background: #eef3f9;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .link-list-inline li a:hover {
            background: #dce3ef;
            text-decoration: none;
        }
