        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d97706;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
            color: #0f172a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }
        p {
            margin-bottom: 1.25rem;
        }
        strong {
            color: #0f3b5e;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            padding: 1.5rem 2rem 2.5rem;
            margin: 1rem 0 2.5rem;
        }
        .text-muted {
            color: #64748b;
        }
        .text-small {
            font-size: 0.9rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            border-bottom: 3px solid #e2e8f0;
            position: relative;
            background: #fff;
            border-radius: 0 0 16px 16px;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0f3b5e;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #0f3b5e;
        }
        .my-logo i {
            color: #d97706;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #0f3b5e, #1e6a8f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            color: #1e293b;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            border-bottom-color: #d97706;
            color: #d97706;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #0f3b5e;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f1f5f9;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.4rem;
            font-size: 0.9rem;
            color: #64748b;
            background: transparent;
            border-radius: 12px;
            margin-top: 0.2rem;
        }
        .breadcrumb a {
            color: #0f3b5e;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #d97706;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #94a3b8;
        }
        .breadcrumb .current {
            color: #1e293b;
            font-weight: 600;
        }
        .hero-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            background: #e2e8f0;
        }
        .hero-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            display: block;
        }
        .hero-image .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
            color: #fff;
            padding: 1.5rem 1.5rem 1rem;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 520px;
            margin: 1.8rem 0 2.2rem;
            background: #f1f5f9;
            padding: 0.3rem;
            border-radius: 40px;
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.3s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.15);
            border-color: #0f3b5e;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.7rem 1.2rem;
            font-size: 1rem;
            background: transparent;
            border-radius: 40px;
            outline: none;
            font-family: inherit;
        }
        .search-box button {
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #1e6a8f;
            transform: scale(1.02);
        }
        .rating-block {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.5rem;
            background: #f8fafc;
            padding: 1rem 1.5rem;
            border-radius: 60px;
            border: 1px solid #e2e8f0;
            margin: 1.5rem 0 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.7rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f59e0b;
        }
        .rating-text {
            font-weight: 600;
            color: #1e293b;
            font-size: 1.05rem;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .rating-form input[type="number"] {
            width: 70px;
            padding: 0.4rem 0.6rem;
            border: 1px solid #cbd5e1;
            border-radius: 30px;
            font-size: 1rem;
            text-align: center;
            background: #fff;
        }
        .rating-form button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.9rem;
        }
        .rating-form button:hover {
            background: #b45309;
        }
        .comment-section {
            background: #f8fafc;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e2e8f0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 1px solid #cbd5e1;
            border-radius: 30px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
            border-radius: 20px;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: #0f3b5e;
            box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.08);
        }
        .comment-form button {
            align-self: flex-start;
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #1e6a8f;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 0.8rem;
            border-top: 2px solid #e2e8f0;
            margin-top: 2rem;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f3b5e;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link .fl-list li a {
            color: #1e293b;
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        friend-link .fl-list li a:hover {
            color: #d97706;
            border-bottom-color: #d97706;
            text-decoration: none;
        }
        footer {
            padding: 1.8rem 0 2.5rem;
            border-top: 2px solid #e2e8f0;
            margin-top: 2rem;
            text-align: center;
            color: #64748b;
            font-size: 0.95rem;
        }
        footer .copyright {
            font-weight: 500;
            color: #1e293b;
            margin-bottom: 0.3rem;
        }
        footer a {
            color: #0f3b5e;
            font-weight: 500;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #d97706;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.8rem 0;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .data-card {
            background: #f1f5f9;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .data-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .data-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #0f3b5e;
        }
        .data-card .label {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 0.2rem;
        }
        .interview-block {
            background: #f0f4f8;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border-left: 5px solid #0f3b5e;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #1e293b;
            margin: 0.5rem 0;
        }
        .inline-link {
            font-weight: 600;
            color: #d97706;
            border-bottom: 1px dashed #d97706;
        }
        .inline-link:hover {
            color: #0f3b5e;
            border-bottom-style: solid;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            header {
                padding: 0.8rem 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.8rem;
                gap: 0.6rem;
            }
            .nav-links {
                display: none;
                width: 100%;
                order: 3;
            }
            .nav-links a {
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
                background: #f8fafc;
                width: 100%;
            }
            nav {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 24px;
            }
            .search-box input {
                padding: 0.6rem 1rem;
                font-size: 0.95rem;
            }
            .search-box button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .rating-block {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 1.2rem;
                border-radius: 24px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .comment-section {
                padding: 1.2rem 1rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 0.3rem;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .hero-image .img-caption {
                font-size: 0.8rem;
                padding: 1rem 1rem 0.7rem;
            }
            friend-link .fl-list {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.4rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
            .rating-form {
                flex-direction: column;
                align-items: stretch;
            }
            .rating-form input[type="number"] {
                width: 100%;
            }
        }
        .section-spacer {
            margin: 2rem 0;
        }
        .list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        .badge {
            background: #e2e8f0;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1e293b;
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
