        *,
        *::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, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f4f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #2a1b3c;
            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-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #2a1b3c;
            margin: 1.8rem 0 0.6rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2a1b3c;
            margin: 2.8rem 0 1rem 0;
            border-left: 6px solid #c44536;
            padding-left: 1.2rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d2b56;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3b5c;
            margin: 1.4rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3a3a4a;
        }
        header {
            background: #2a1b3c;
            color: #f7f4f0;
            padding: 0.8rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f7d44a;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #f7d44a;
        }
        .my-logo span {
            color: #f7f4f0;
            font-weight: 300;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-list a {
            color: #f7f4f0;
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f7f4f0;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #6b6b7a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #b0a8b8;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #6b6b7a;
        }
        .featured-img-wrap {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            background: #e6dfd7;
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin: 2.2rem 0;
        }
        .highlight-card {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            border: 1px solid #ece7e0;
        }
        .highlight-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }
        .highlight-card i {
            font-size: 2.2rem;
            color: #c44536;
            margin-bottom: 0.8rem;
        }
        .highlight-card h4 {
            margin-top: 0;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            padding: 0.6rem 0 1rem 0;
            list-style: none;
        }
        .link-list li a {
            background: #fff;
            padding: 0.3rem 1.2rem 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid #ddd6ce;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }
        .link-list li a:hover {
            background: #c44536;
            color: #fff;
            border-color: #c44536;
            text-decoration: none;
        }
        .link-list li a i {
            font-size: 0.8rem;
        }
        .interactive-section {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #ece7e0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2a1b3c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6ce;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.25s;
            background: #fcfaf8;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c44536;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.8rem 2.2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: #2a1b3c;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #6b6b7a;
        }
        .btn-secondary:hover {
            background: #3d3d4e;
        }
        .rating-stars {
            display: flex;
            gap: 0.6rem;
            font-size: 2rem;
            color: #e0d5c8;
            cursor: pointer;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f7b731;
        }
        footer {
            background: #2a1b3c;
            color: #cfc9de;
            padding: 2.2rem 1rem 1.8rem;
            border-radius: 20px 20px 0 0;
            margin-top: 3rem;
        }
        footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        footer a {
            color: #f7d44a;
        }
        footer a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
        }
        .copyright {
            border-top: 1px solid #4a3b5c;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            font-size: 0.9rem;
            color: #a89fb8;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #3d2b56;
                padding: 1rem 0.8rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .interactive-section {
                padding: 1.5rem 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-list {
                display: flex !important;
            }
        }
        .eeat-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            background: #f0ebe5;
            padding: 0.8rem 1.4rem;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #3d2b56;
            margin: 1.2rem 0 0.8rem;
        }
        .eeat-badge i {
            color: #c44536;
            margin-right: 0.4rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ece7e0;
        }
        .data-table th {
            background: #2a1b3c;
            color: #f7f4f0;
            font-weight: 600;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f4ef;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #6b6b7a;
        }
        .updated-badge {
            display: inline-block;
            background: #e8e0d8;
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #3d2b56;
        }
