* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b8860b;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #0a1a3a;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #d4af37;
            padding-left: 0.7em;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e5d9c5;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c3e5a;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin-left: 1.6em;
            margin-bottom: 1.4em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: rgba(212, 175, 55, 0.12);
            padding: 0.2em 0.6em;
            border-radius: 8px;
            transition: background 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            background: rgba(212, 175, 55, 0.25);
            color: #f0d68a;
        }
        .my-logo small {
            font-size: 0.55rem;
            display: block;
            color: #b0c4de;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4af37;
            color: #d4af37;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e5e9f0;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #d4af37;
            color: #0a1a3a;
        }
        .main-nav a.active {
            background: #d4af37;
            color: #0a1a3a;
        }
        .breadcrumb {
            background: #ece6db;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb a {
            color: #5a4a3a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7a6a5a;
        }
        .hero {
            background: linear-gradient(to right, #f0ebe2, #fcf9f5);
            padding: 40px 0 30px;
            border-bottom: 1px solid #e5d9c5;
        }
        .hero h1 {
            border-left-color: #d4af37;
            margin-top: 0;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            margin-top: 12px;
            color: #5a4a3a;
            font-size: 0.92rem;
        }
        .hero-meta i {
            color: #b8860b;
            margin-right: 6px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #fcfaf7;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #e5d9c5;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 8px;
            margin-bottom: 16px;
        }
        .sidebar ul {
            list-style: none;
            margin-left: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
            border-bottom: 1px dotted #ece6db;
            padding-bottom: 8px;
        }
        .sidebar a {
            text-decoration: none;
            font-weight: 500;
        }
        .sidebar a:hover {
            text-decoration: underline;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #6a5a4a;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .search-box {
            background: #f0ebe2;
            padding: 20px 24px;
            border-radius: 14px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            border: 1px solid #ddd6c8;
        }
        .search-box label {
            font-weight: 600;
            color: #0a1a3a;
            font-size: 1.05rem;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #ccc6b8;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #d4af37;
            outline: none;
        }
        .search-box button {
            background: #0a1a3a;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #1a2f5a;
        }
        .interaction-area {
            background: #fcfaf7;
            border: 1px solid #e5d9c5;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
        }
        .interaction-area h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            margin: 12px 0 18px;
            color: #ccc6b8;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #d4af37;
            transform: scale(1.15);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd6c8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #d4af37;
            outline: none;
        }
        .comment-form .form-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form button {
            background: #d4af37;
            color: #0a1a3a;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #c49f2e;
        }
        .comment-form button.secondary {
            background: #e5d9c5;
            color: #1e1e2a;
        }
        .comment-form button.secondary:hover {
            background: #d5c9b5;
        }
        .site-footer {
            background: #0a1a3a;
            color: #c8d0dc;
            padding: 36px 0 24px;
            margin-top: 50px;
            border-top: 4px solid #d4af37;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .site-footer .footer-col {
            flex: 1 1 200px;
        }
        .site-footer h4 {
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #b0c4de;
            text-decoration: none;
        }
        .site-footer a:hover {
            color: #d4af37;
            text-decoration: underline;
        }
        .friend-link {
            display: block;
            padding: 10px 0;
            border-top: 1px solid #2a3a5a;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3a5a;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #8a9aaa;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .interaction-area {
                padding: 18px 16px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input {
                min-width: unset;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
            }
            h1 {
                font-size: 1.4rem;
                padding-left: 0.5em;
            }
            h2 {
                font-size: 1.2rem;
            }
        }
        .highlight-box {
            background: #f5f0e8;
            border-left: 4px solid #d4af37;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 18px 14px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #ece6db;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #d4af37;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #5a4a3a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #ece6db;
        }
        th {
            background: #0a1a3a;
            color: #d4af37;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f4ee;
        }
        .interview-block {
            background: #f5f0e8;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0;
            border: 1px solid #ddd6c8;
        }
        .interview-block .q {
            font-weight: 700;
            color: #0a1a3a;
        }
        .interview-block .a {
            margin-left: 0.5em;
            color: #2c3e5a;
        }
        .faq-item {
            border-bottom: 1px solid #ece6db;
            padding: 14px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item .question {
            font-weight: 700;
            color: #0a1a3a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item .answer {
            padding-top: 8px;
            color: #3a4a5a;
        }
        .tag {
            display: inline-block;
            background: #e5d9c5;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #0a1a3a;
            margin-right: 4px;
        }
