        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #faf7f2;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
        }
        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: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 20px 28px 40px;
        }
        header {
            padding: 16px 0 8px;
            border-bottom: 2px solid #f1e8dc;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            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;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #d97706;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            list-style: none;
        }
        .main-nav a {
            font-weight: 600;
            color: #44403c;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #44403c;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f1e8dc;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #78716c;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #78716c;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #b45309;
            font-weight: 600;
        }
        .search-bar {
            display: flex;
            gap: 8px;
            max-width: 480px;
            margin: 20px 0 24px;
            background: #fff;
            border: 2px solid #e7ddd2;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            transition: border-color 0.25s;
        }
        .search-bar:focus-within {
            border-color: #b45309;
        }
        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 0;
            font-size: 1rem;
            outline: none;
            color: #2d2a24;
        }
        .search-bar button {
            background: #b45309;
            border: none;
            color: #fff;
            padding: 10px 24px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #92400e;
        }
        .search-bar button:active {
            transform: scale(0.96);
        }
        .content {
            padding: 8px 0 32px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1c1917;
            margin: 16px 0 12px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #d97706;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #292524;
            border-left: 6px solid #b45309;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #44403c;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #57534e;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #3f3a35;
        }
        .lead {
            font-size: 1.2rem;
            color: #57534e;
            font-weight: 400;
            line-height: 1.8;
        }
        .highlight-box {
            background: #fef3c7;
            border-left: 6px solid #d97706;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #fff;
            border: 2px solid #f1e8dc;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #b45309;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #78716c;
            margin-top: 6px;
        }
        .interview-card {
            background: #f8f4ef;
            border-radius: 20px;
            padding: 24px;
            margin: 20px 0;
            border: 1px solid #e7ddd2;
        }
        .interview-card .name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #292524;
        }
        .interview-card .loc {
            color: #b45309;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .interview-card .quote {
            font-style: italic;
            margin: 12px 0 0;
            padding-left: 16px;
            border-left: 3px solid #d97706;
        }
        .faq-item {
            border-bottom: 2px solid #f1e8dc;
            padding: 18px 0;
        }
        .faq-item strong {
            display: block;
            font-size: 1.1rem;
            color: #292524;
            margin-bottom: 6px;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            padding: 10px 0 10px 32px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23b45309" width="18px" height="18px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') left center no-repeat;
            background-size: 18px;
            margin-bottom: 4px;
        }
        .related-link {
            display: inline-block;
            background: #fef3c7;
            padding: 2px 12px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #92400e;
            transition: background 0.2s;
        }
        .related-link:hover {
            background: #fde68a;
            text-decoration: none;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            background: #f1e8dc;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #fffcf9;
            font-size: 0.9rem;
            color: #78716c;
            border-top: 2px solid #f1e8dc;
        }
        .feedback-section {
            margin: 48px 0 32px;
            padding: 28px;
            background: #f8f4ef;
            border-radius: 24px;
            border: 2px solid #e7ddd2;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-left-color: #d97706;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-row input,
        .form-row textarea,
        .form-row select {
            flex: 1 1 220px;
            padding: 12px 16px;
            border: 2px solid #e7ddd2;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            border-color: #b45309;
            outline: none;
        }
        .form-row textarea {
            min-height: 100px;
            flex-basis: 100%;
        }
        .form-row .star-select {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .form-row .star-select label {
            font-weight: 600;
            color: #57534e;
        }
        .form-row .star-select select {
            flex: 0 1 auto;
            padding: 8px 16px;
        }
        .btn-primary {
            background: #b45309;
            border: none;
            color: #fff;
            padding: 12px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: #92400e;
            transform: scale(1.02);
        }
        .btn-primary:active {
            transform: scale(0.97);
        }
        friend-link {
            display: block;
            padding: 24px 0 16px;
            border-top: 2px solid #f1e8dc;
            margin-top: 32px;
        }
        friend-link .fl-head {
            font-size: 1.2rem;
            font-weight: 700;
            color: #292524;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            list-style: none;
        }
        friend-link .fl-list a {
            color: #78716c;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        friend-link .fl-list a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        footer {
            padding: 24px 0 16px;
            border-top: 2px solid #f1e8dc;
            margin-top: 16px;
            text-align: center;
            color: #78716c;
            font-size: 0.9rem;
        }
        footer .copyright {
            font-weight: 500;
            color: #57534e;
        }
        footer .copyright i {
            color: #b45309;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 16px 24px;
                border-radius: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 4px;
                padding: 12px 0 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                border-radius: 12px;
                border-bottom: none;
                background: #f8f4ef;
            }
            .main-nav a:hover {
                background: #f1e8dc;
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                gap: 8px;
                flex-wrap: wrap;
            }
            .search-bar {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 4px 4px 4px 16px;
            }
            .search-bar input {
                padding: 8px 0;
                font-size: 0.95rem;
                min-width: 120px;
            }
            .search-bar button {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-section {
                padding: 16px;
            }
            .form-row input,
            .form-row textarea,
            .form-row select {
                flex-basis: 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .featured-image img {
                max-height: 220px;
            }
            .interview-card {
                padding: 16px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 8px 10px 16px;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
                padding: 8px;
                background: #fff;
                border: 2px solid #e7ddd2;
            }
            .search-bar input {
                width: 100%;
                padding: 8px 12px;
                border-bottom: 2px solid #f1e8dc;
            }
            .search-bar button {
                width: 100%;
                justify-content: center;
            }
        }
        .schema-hidden {
            display: none;
        }
        .anchor-offset {
            scroll-margin-top: 24px;
        }
