        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #fbfaf6;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #7a2e00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 2rem 0 0.75rem;
            color: #2d1b0e;
            letter-spacing: -0.02em;
        }
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem;
            color: #3d2b1a;
            border-bottom: 3px solid #e2c8a8;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.8rem 0 0.75rem;
            color: #4d3420;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #5a3f2a;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2c2c2c;
        }
        .content-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
        }
        .site-header {
            background: #ffffff;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: #2d1b0e;
            letter-spacing: -0.02em;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #b45309;
        }
        .my-logo i {
            color: #b45309;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #2d1b0e;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e8dc;
        }
        .primary-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d2b1a;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: #f0e8dc;
            color: #7a2e00;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #2d1b0e;
            color: #fbfaf6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.75rem 0 0.25rem;
            font-size: 0.88rem;
            color: #6b5a4a;
            max-width: 1200px;
            margin: 0 auto;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #b45309;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #6b5a4a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #2d1b0e;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #f5ede2 0%, #e8d9c6 100%);
            border-radius: 24px;
            padding: 2.5rem 2.5rem 2rem;
            margin: 1.5rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .hero-content {
            flex: 1 1 55%;
        }
        .hero-image-wrap {
            flex: 1 1 35%;
            min-width: 220px;
        }
        .hero-image-wrap img {
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .hero h1 {
            margin-top: 0;
            font-size: 2.4rem;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #4d3420;
            margin-bottom: 1.5rem;
            max-width: 600px;
        }
        .hero .cta-btn {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.25s, transform 0.15s;
            border: none;
            cursor: pointer;
        }
        .hero .cta-btn:hover {
            background: #7a2e00;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .hero .badge-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: #4d3420;
        }
        .hero .badge-wrap i {
            color: #b45309;
            margin-right: 0.3rem;
        }
        .form-card {
            background: #f9f5ef;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #e2d4c2;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.4rem;
            color: #2d1b0e;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd0be;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #b45309;
            outline: none;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn-submit {
            background: #2d1b0e;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .form-card .btn-submit:hover {
            background: #b45309;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: end;
        }
        .form-row .field-group {
            flex: 1 1 180px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            justify-content: flex-end;
            font-size: 1.6rem;
            margin: 0.4rem 0 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d4c4b0;
            cursor: pointer;
            transition: color 0.15s;
            font-size: 1.7rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a317;
        }
        .content-body {
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 3rem;
        }
        .content-body p,
        .content-body li {
            font-size: 1.05rem;
            color: #2c2c2c;
        }
        .content-body ul,
        .content-body ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: #f5ede2;
            border-left: 5px solid #b45309;
            padding: 1.2rem 1.8rem;
            border-radius: 0 14px 14px 0;
            margin: 1.8rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.2rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f9f5ef;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid #e2d4c2;
        }
        .stat-card .stat-num {
            font-size: 2.2rem;
            font-weight: 700;
            color: #b45309;
        }
        .stat-card .stat-label {
            font-size: 0.95rem;
            color: #5a3f2a;
        }
        .insight-quote {
            font-style: italic;
            background: #fffcf7;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border: 1px solid #e2d4c2;
            margin: 1.8rem 0;
            font-size: 1.1rem;
            color: #3d2b1a;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
            padding: 0.8rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
        }
        .site-footer {
            background: #2d1b0e;
            color: #e8d9c6;
            border-radius: 24px 24px 0 0;
            padding: 2.5rem 1.5rem 2rem;
            margin: 3rem -1rem 0;
        }
        .site-footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .site-footer a {
            color: #e8c8a8;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .site-footer friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            font-weight: 500;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .site-footer .copyright {
            border-top: 1px solid #4d3420;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #b8a692;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 0.8rem;
                background: #fff;
                border-radius: 16px;
                padding: 0.5rem 0;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
            }
            .hero {
                flex-direction: column;
                padding: 1.8rem 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .site-footer {
                padding: 2rem 1rem 1.5rem;
                margin-left: -1rem;
                margin-right: -1rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 1rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b45309;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            border: none;
            transition: background 0.2s, transform 0.15s;
            z-index: 40;
        }
        .scroll-top:hover {
            background: #7a2e00;
            transform: translateY(-3px);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7a6a;
            margin-bottom: 1.5rem;
            display: block;
        }
        .tag {
            display: inline-block;
            background: #e8d9c6;
            padding: 0.15rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #3d2b1a;
        }
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
