        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44536;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #922e1f;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #2b2b2b;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #e6b17e;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #c44536;
            padding-left: 0.9rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3d3d3d;
            margin-top: 1.4rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #2b2b2b;
            color: #f5ede4;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f5ede4;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            color: #e6b17e;
        }
        .my-logo i {
            color: #e6b17e;
            font-size: 1.5rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e6b17e;
            color: #e6b17e;
            font-size: 1.4rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #e6b17e;
            color: #2b2b2b;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #f5ede4;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(230, 177, 126, 0.2);
            color: #e6b17e;
        }
        .nav-menu .active {
            color: #e6b17e;
            border-bottom: 2px solid #e6b17e;
        }
        .breadcrumb {
            background: #f0e8df;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd2c5;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #a0856e;
        }
        .breadcrumb a {
            color: #7a5f4a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #2b2b2b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2b2b2b 0%, #4a3b30 100%);
            color: #f5ede4;
            padding: 3rem 0 2.8rem;
            text-align: center;
        }
        .hero h1 {
            color: #f5ede4;
            border-bottom: none;
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 760px;
            margin: 0.8rem auto 0;
            opacity: 0.9;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 1.2rem;
            background: rgba(230, 177, 126, 0.2);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #e6b17e;
        }
        .content-area {
            padding: 2.4rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .featured-image-wrapper {
            margin: 1.8rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            background: #e8ddd2;
        }
        .featured-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image-wrapper figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a4a3a;
            background: #f0e8df;
            font-style: italic;
        }
        .link-list-inline {
            background: #f0e8df;
            border-radius: 10px;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            font-size: 0.9rem;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .interaction-section {
            background: #f0e8df;
            border-radius: 14px;
            padding: 2rem 2rem 1.8rem;
            margin: 2.4rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 2.4rem;
        }
        .interaction-section .full-width {
            grid-column: 1 / -1;
        }
        .interaction-section h3 {
            margin-top: 0;
            border-left: 4px solid #c44536;
            padding-left: 0.8rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #2b2b2b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 1px solid #ccc0b0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fffcf8;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c44536;
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.15);
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-weight: 600;
            padding: 0.6rem 1.6rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: 0.2s;
            text-decoration: none;
        }
        .btn:hover {
            background: #922e1f;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c44536;
            color: #c44536;
        }
        .btn-outline:hover {
            background: #c44536;
            color: #fff;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #d4c5b5;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.2s;
            color: #d4c5b5;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e6b17e;
        }
        .site-footer {
            background: #2b2b2b;
            color: #d9cfc4;
            padding: 2.6rem 0 1.2rem;
            font-size: 0.9rem;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem 2.4rem;
        }
        .footer-inner h4 {
            color: #e6b17e;
            margin-top: 0;
            font-size: 1rem;
            border: none;
            padding: 0;
        }
        .footer-inner a {
            color: #d9cfc4;
            text-decoration: none;
        }
        .footer-inner a:hover {
            color: #e6b17e;
            text-decoration: underline;
        }
        .friend-link {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .friend-link a {
            display: block;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #4a3b30;
            padding-top: 1.2rem;
            margin-top: 0.8rem;
            text-align: center;
            font-size: 0.8rem;
            color: #a0856e;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .interaction-section {
                grid-template-columns: 1fr;
                padding: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .header-inner {
                padding: 0 14px;
            }
            .hero {
                padding: 2rem 0 2rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .content-area {
                padding: 1.6rem 0 2rem;
            }
        }
        .text-muted {
            color: #6b5d4f;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .highlight-box {
            background: #f5ede4;
            border-left: 6px solid #e6b17e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 10px 10px 0;
            margin: 1.4rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.4rem 0;
        }
        .stat-card {
            background: #fffcf8;
            border-radius: 10px;
            padding: 1rem 1.2rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8ddd2;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c44536;
            display: block;
        }
        .stat-card .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6b5d4f;
        }
        .interview-block {
            background: #fffcf8;
            border-radius: 12px;
            padding: 1.4rem 1.8rem;
            margin: 1.4rem 0;
            border: 1px solid #e0d4c8;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .interview-block .attribution {
            font-style: italic;
            color: #7a5f4a;
            margin-top: 0.6rem;
            display: block;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fffcf8;
            border-radius: 10px;
            overflow: hidden;
        }
        th {
            background: #2b2b2b;
            color: #f5ede4;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e8ddd2;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #e6b17e;
            color: #2b2b2b;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
        }
