        *,
        *::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, sans-serif;
            background: #fafaf8;
            color: #1e1e1e;
            line-height: 1.8;
            padding: 0 0 0 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            margin-top: 0;
            color: #1a2a1f;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.6rem 0;
            color: #2b4a2d;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.4rem 0 0.4rem 0;
            color: #3d5e3f;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1f0e 0%, #1a3a1e 100%);
            color: #fff;
            padding: 0.6rem 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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d742;
            text-transform: uppercase;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo i {
            color: #d4af37;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e8d0;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 175, 55, 0.2);
            color: #f5d742;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #d4af37;
            color: #0b1f0e;
        }
        .breadcrumb {
            background: #f0ede5;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dcd4c0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #8a7a5a;
        }
        .breadcrumb a {
            color: #5a4a2a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #2a4a2a;
            font-weight: 600;
        }
        .hero-figure {
            margin: 1.8rem 0 2.2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e8e2d0;
        }
        .hero-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            background: #f5f0e6;
            font-size: 0.9rem;
            color: #3a3a2a;
            font-style: italic;
            border-top: 2px solid #d4af37;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            border-left: 1px solid #dcd4c0;
            padding-left: 2rem;
        }
        .sidebar-card {
            background: #f5f2ea;
            border-radius: 14px;
            padding: 1.4rem;
            margin-bottom: 1.8rem;
            border: 1px solid #e2dac8;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #ddd6c4;
        }
        .sidebar-card li a {
            font-weight: 500;
        }
        .stat-highlight {
            background: linear-gradient(145deg, #1a2a1a, #0d1f0d);
            color: #f0edd0;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.2rem;
            text-align: center;
            border-left: 6px solid #d4af37;
        }
        .stat-item {
            padding: 0.4rem;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5d742;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #b8b8a0;
        }
        .interview-block {
            background: #f0ede5;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 6px solid #b8860b;
            font-style: normal;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #2a4a2a;
        }
        .interview-block .quote {
            font-style: italic;
            color: #2e2e2e;
        }
        .form-card {
            background: #f5f2ea;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #ddd6c4;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2a3a2a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd4c0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fffdf8;
            transition: border-color 0.25s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #d4af37;
            color: #0b1f0e;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: #c49f2e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
        }
        .btn-secondary {
            background: #3a5a3a;
            color: #fff;
        }
        .btn-secondary:hover {
            background: #2a4a2a;
            box-shadow: 0 6px 20px rgba(42, 74, 42, 0.35);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d4c8b0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #dcd4c0;
            margin-top: 2rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0 0;
        }
        friend-link li a {
            color: #3a5a3a;
            font-weight: 500;
            font-size: 0.95rem;
        }
        friend-link li a:hover {
            color: #b8860b;
        }
        .site-footer {
            background: #0b1f0e;
            color: #c8c8b0;
            padding: 2rem 0 1.2rem;
            margin-top: 3rem;
            border-top: 4px solid #d4af37;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 1.2rem;
            padding-top: 1rem;
            border-top: 1px solid #2a4a2a;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem 2rem;
            margin-bottom: 0.8rem;
        }
        .site-footer .footer-links a {
            color: #b8b890;
            font-size: 0.9rem;
        }
        .site-footer .footer-links a:hover {
            color: #f5d742;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                border-left: none;
                padding-left: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a3a1e;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .stat-highlight {
                grid-template-columns: 1fr 1fr;
                padding: 1.2rem;
            }
            .interview-block {
                padding: 1.2rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .hero-figure figcaption {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .stat-highlight {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .schema-hidden {
            display: none;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e8e2d0;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #3a4a3a;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
            margin: 1.4rem 0;
        }
        .feature-item {
            background: #f5f2ea;
            padding: 1.2rem 1.4rem;
            border-radius: 12px;
            border-left: 4px solid #d4af37;
        }
        .feature-item i {
            color: #b8860b;
            margin-right: 0.6rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf5;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2dac8;
        }
        th {
            background: #2a4a2a;
            color: #f5edd0;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #d4af37;
            color: #0b1f0e;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
