        *,
        *::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: #faf7f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e2a3a;
        }
        h1 {
            font-size: 2.2rem;
            margin: 1.5rem 0 1rem;
        }
        h2 {
            font-size: 1.7rem;
            margin: 2rem 0 0.75rem;
            border-left: 5px solid #b45309;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem;
            color: #2d3a4a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #3d4a5a;
        }
        p {
            margin-bottom: 1.1rem;
            word-break: break-word;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e5d9cc;
            margin: 2rem 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fff;
            padding: 1.2rem 1.8rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        @media (max-width: 640px) {
            .container {
                padding: 0.8rem 1rem 1.5rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            body {
                padding: 0 0.4rem;
            }
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0 0.8rem;
            border-bottom: 2px solid #f0e7db;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .header-top .tagline {
            font-size: 0.9rem;
            color: #6b7a8a;
            background: #f5efe8;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
        }
        .nav-links li a {
            display: block;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2d3a4a;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .nav-links li a.active {
            background: #b45309;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            background: none;
            border: none;
            color: #2d3a4a;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                border: 1px solid #e5d9cc;
                border-radius: 16px;
                padding: 0.6rem;
                margin-top: 0.4rem;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 100;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
            .nav-bar {
                flex-wrap: wrap;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #6b7a8a;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b7a8a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            gap: 0.4rem;
            max-width: 520px;
            margin: 1.2rem 0 1.8rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e5d9cc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fcfaf7;
        }
        .search-box input:focus {
            border-color: #b45309;
        }
        .search-box button {
            padding: 0.7rem 1.6rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #78350f;
        }
        .meta-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem 1.5rem;
            font-size: 0.9rem;
            color: #6b7a8a;
            margin: 0.6rem 0 1.2rem;
            padding: 0.4rem 0;
            border-bottom: 1px dashed #e5d9cc;
        }
        .meta-line i {
            margin-right: 0.3rem;
        }
        .hero-img-wrap {
            margin: 1.2rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #f0e7db;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 440px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
            color: #fff;
            padding: 1.2rem 1rem 0.8rem;
            font-size: 0.9rem;
            font-style: italic;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .highlight-card {
            background: #fcf9f5;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            border: 1px solid #f0e7db;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .highlight-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }
        .highlight-card i {
            font-size: 1.8rem;
            color: #b45309;
            margin-bottom: 0.5rem;
        }
        .highlight-card h4 {
            margin: 0.2rem 0 0.3rem;
            font-size: 1.1rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #b45309;
            color: #fff;
            padding: 0.7rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 0.8rem;
            border-bottom: 1px solid #f0e7db;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5efe8;
        }
        @media (max-width: 540px) {
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.5rem;
            }
        }
        .interview-block {
            background: #f5efe8;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            margin: 1.6rem 0;
            border-left: 5px solid #b45309;
        }
        .interview-block .quote {
            font-size: 1.05rem;
            font-style: italic;
            position: relative;
            padding-left: 1.8rem;
        }
        .interview-block .quote::before {
            content: "\201C";
            font-size: 3rem;
            color: #b45309;
            position: absolute;
            left: -0.2rem;
            top: -0.8rem;
            font-family: Georgia, serif;
        }
        .interview-block .attribution {
            margin-top: 0.6rem;
            font-weight: 600;
            color: #2d3a4a;
            text-align: right;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-around;
            background: #fcf9f5;
            border-radius: 16px;
            padding: 1.2rem;
            margin: 1.2rem 0;
            border: 1px solid #f0e7db;
        }
        .stat-item {
            text-align: center;
            flex: 1 1 120px;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b45309;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #6b7a8a;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0 1.2rem;
            padding: 1.5rem 0;
            border-top: 2px solid #f0e7db;
        }
        @media (max-width: 640px) {
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .feedback-card {
            background: #fcfaf7;
            border-radius: 16px;
            padding: 1.2rem 1.4rem;
            border: 1px solid #f0e7db;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.6rem 1rem;
            border: 2px solid #e5d9cc;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b45309;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .star-group {
            display: flex;
            gap: 0.2rem;
            direction: rtl;
            font-size: 1.6rem;
            color: #d1c4b5;
        }
        .feedback-card .star-group input {
            display: none;
        }
        .feedback-card .star-group label {
            cursor: pointer;
            transition: color 0.15s;
        }
        .feedback-card .star-group label:hover,
        .feedback-card .star-group label:hover~label,
        .feedback-card .star-group input:checked~label {
            color: #f59e0b;
        }
        .feedback-card button {
            padding: 0.6rem 1.4rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #78350f;
        }
        .feedback-card .msg {
            font-size: 0.9rem;
            color: #2d7a3a;
            margin-top: 0.3rem;
            min-height: 1.2rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            border-top: 2px solid #f0e7db;
            margin-top: 1.2rem;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: #2d3a4a;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        friend-link .fl-list li a {
            font-size: 0.95rem;
            color: #6b7a8a;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        friend-link .fl-list li a:hover {
            color: #b45309;
            border-bottom-color: #b45309;
            text-decoration: none;
        }
        .site-footer {
            margin-top: 1.5rem;
            padding: 1.2rem 0 0.8rem;
            border-top: 2px solid #f0e7db;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7a8a;
        }
        .site-footer .copy {
            font-weight: 500;
        }
        .text-muted {
            color: #6b7a8a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .dyn-content {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
