* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c23152;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #eee;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        .nav-open nav {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 12px;
            gap: 4px;
        }
        .nav-open nav a {
            padding: 12px 20px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.85rem;
            color: #666;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #0f3460;
        }
        .breadcrumb span {
            color: #999;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0f3460;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        h1 .highlight {
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .last-updated {
            display: inline-block;
            background: #eef2f7;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #e94560;
        }
        .featured-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #777;
            margin-top: 8px;
            text-align: center;
            font-style: italic;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f3460;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #e94560;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #1a1a2e;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d4059;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: #2d2d3f;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdebd0);
            border-left: 6px solid #f5af19;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #b9770e;
        }
        .tip-box {
            background: #eafaf1;
            border-left: 6px solid #27ae60;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .tip-box strong {
            color: #1e8449;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e94560;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.95rem;
        }
        th {
            background: #0f3460;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #eef0f4;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f9fc;
        }
        .feedback-section {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            margin: 48px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef0f4;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-bottom-color: #f5af19;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #0f3460;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fafbfc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e94560;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5af19;
        }
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .btn-primary {
            background: linear-gradient(135deg, #e94560, #c23152);
            color: #fff;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(233, 69, 96, 0.35);
        }
        .btn-secondary {
            background: #0f3460;
            color: #fff;
        }
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 52, 96, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e94560;
            color: #e94560;
        }
        .btn-outline:hover {
            background: #e94560;
            color: #fff;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: #e94560;
            outline: none;
        }
        .interview-block {
            background: #f0f4fa;
            border-radius: 16px;
            padding: 28px 28px;
            margin: 32px 0;
            border-left: 6px solid #0f3460;
            position: relative;
        }
        .interview-block::before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 2rem;
            color: #0f3460;
            opacity: 0.15;
            position: absolute;
            top: 16px;
            right: 24px;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #0f3460;
            font-size: 1.1rem;
        }
        .interview-block .role {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin-top: 32px;
            padding: 24px 0;
            border-top: 2px solid #e0e0e0;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #0f3460;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
        }
        friend-link ul li a {
            color: #e94560;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #c23152;
        }
        footer {
            background: #0f3460;
            color: #ccc;
            padding: 32px 0 24px;
            font-size: 0.9rem;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        footer .copy {
            color: #aaa;
        }
        footer a {
            color: #f5af19;
        }
        footer a:hover {
            color: #ffd966;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
            }
            .nav-open nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .feedback-section {
                padding: 20px 16px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .section-spacer {
            height: 16px;
        }
        .inline-icon {
            margin-right: 6px;
            color: #e94560;
        }
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }
        .pros,
        .cons {
            background: #fff;
            padding: 20px 24px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .pros h4 {
            color: #27ae60;
        }
        .cons h4 {
            color: #e94560;
        }
        .pros ul,
        .cons ul {
            padding-left: 20px;
            margin-top: 8px;
        }
        .pros ul li,
        .cons ul li {
            margin-bottom: 6px;
        }
        @media (max-width: 600px) {
            .pros-cons {
                grid-template-columns: 1fr;
            }
        }
        .gallery-mini {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .gallery-mini img {
            border-radius: 12px;
            height: 120px;
            object-fit: cover;
            width: 100%;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e94560;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(233, 69, 96, 0.3);
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0;
            pointer-events: none;
            border: none;
            z-index: 999;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
        }
