        *,
        *::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: #1e1e2a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8652a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3e1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --primary: #b8652a;
            --primary-dark: #7a3e1a;
            --accent: #e8b84b;
            --accent-light: #f5e3b5;
            --bg-soft: #faf7f2;
            --bg-card: #ffffff;
            --text-dark: #1e1e2a;
            --text-mid: #3d3d4a;
            --text-light: #6b6b7a;
            --border-light: #e5ddd4;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --radius-sm: 6px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1e2a 0%, #2a2a3e 100%);
            color: #fff;
            padding: 0.75rem 0;
            border-bottom: 4px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: var(--accent);
            padding: 0.2rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(232, 184, 75, 0.3);
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(232, 184, 75, 0.5);
            text-decoration: none;
        }
        .my-logo span {
            color: #1e1e2a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ede8e0;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(232, 184, 75, 0.2);
            color: var(--accent);
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--accent);
            color: #1e1e2a;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.25rem 0.5rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-mid);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--primary-dark);
            font-weight: 600;
        }
        .main-wrap {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(135deg, #f5e8d5 0%, #fff8ee 100%);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            margin-bottom: 2.5rem;
            border-left: 6px solid var(--accent);
            box-shadow: var(--shadow-sm);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .hero h1 .highlight {
            color: var(--primary);
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: var(--text-mid);
            max-width: 720px;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin-top: 1.25rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: var(--primary);
        }
        .section {
            margin-bottom: 2.5rem;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--accent-light);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .section h2 i {
            color: var(--primary);
        }
        .section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.5rem 0 0.75rem;
            color: var(--text-dark);
        }
        .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1rem 0 0.5rem;
            color: var(--text-mid);
        }
        .section p {
            margin-bottom: 1rem;
            color: var(--text-mid);
        }
        .section p strong {
            color: var(--text-dark);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .card h4 {
            margin-top: 0;
            color: var(--primary-dark);
        }
        .card p {
            font-size: 0.95rem;
        }
        .feature-img-wrap {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: #ede8e0;
        }
        .feature-img-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .feature-img-wrap .img-caption {
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
            color: var(--text-light);
            background: #fff;
            border-top: 1px solid var(--border-light);
            font-style: italic;
        }
        .form-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.75rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            margin: 1.5rem 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: var(--text-dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcfaf7;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(184, 101, 42, 0.12);
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            background: var(--primary);
            color: #fff;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .btn-accent {
            background: var(--accent);
            color: #1e1e2a;
        }
        .btn-accent:hover {
            background: #d9a83a;
            color: #1e1e2a;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s, transform 0.1s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 0.5rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 1px solid var(--border-light);
            border-radius: 50px;
            font-size: 0.95rem;
            background: #fff;
        }
        .search-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(184, 101, 42, 0.1);
            outline: none;
        }
        .search-form button {
            border-radius: 50px;
            padding: 0.7rem 1.4rem;
        }
        .site-footer {
            background: #1e1e2a;
            color: #cbc4ba;
            padding: 2.5rem 0 1.5rem;
            border-top: 4px solid var(--accent);
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 1.05rem;
        }
        .footer-col a {
            color: #b5ada5;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.25rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.85rem;
            color: #8a847a;
        }
        .footer-bottom .copyright i {
            margin-right: 0.3rem;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.25rem 0.5rem 0.25rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50px;
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: rgba(232, 184, 75, 0.15);
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.25rem;
                padding-top: 0.75rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 1.5rem 1.2rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .section h3 {
                font-size: 1.2rem;
            }
            .form-card {
                padding: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
                padding: 0.15rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .text-muted {
            color: var(--text-light);
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .list-links {
            list-style: none;
            padding: 0;
        }
        .list-links li {
            padding: 0.3rem 0;
        }
        .list-links li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .list-links li a i {
            font-size: 0.8rem;
            color: var(--primary);
        }
        .hidden-schema {
            display: none;
        }
