        *,
        *::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', sans-serif;
            background: #f7f4f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        :root {
            --brand: #c44536;
            --brand-dark: #a02e1f;
            --gold: #e8b84b;
            --cream: #fdf8f0;
            --slate: #2c3e50;
            --light-bg: #faf6f0;
            --card-bg: #ffffff;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 16px;
            --text-muted: #5a5a5a;
            --border-light: #eae3da;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: var(--cream);
            border-bottom: 2px solid var(--gold);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--brand);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 1.6rem;
        }
        .my-logo span {
            color: var(--slate);
            font-weight: 300;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--slate);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px 20px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu li a {
            text-decoration: none;
            color: var(--slate);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .nav-menu li a:hover {
            background: var(--gold);
            color: #1e1e1e;
        }
        .nav-menu li a i {
            margin-right: 6px;
            font-size: 0.85rem;
            color: var(--brand);
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 12px 0 8px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--text-muted);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--brand);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: var(--text-muted);
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--brand-dark);
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            border-left: 6px solid var(--gold);
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--slate);
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e1e1e;
            margin-top: 36px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 28px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .last-update {
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--cream);
            display: inline-block;
            padding: 4px 16px 4px 12px;
            border-radius: 30px;
            border: 1px solid var(--border-light);
            margin-bottom: 24px;
        }
        .last-update i {
            margin-right: 6px;
            color: var(--brand);
        }
        .feature-image {
            margin: 32px 0 40px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--card-bg);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--cream);
            border-top: 1px solid var(--border-light);
            font-style: italic;
        }
        .highlight-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
            border-left: 6px solid var(--gold);
            margin: 32px 0;
        }
        .highlight-card p:last-child {
            margin-bottom: 0;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .insight-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid var(--border-light);
        }
        .insight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        }
        .insight-card i {
            font-size: 2rem;
            color: var(--brand);
            margin-bottom: 12px;
        }
        .insight-card h4 {
            margin-top: 0;
        }
        .link-group {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 24px 0;
            border: 1px solid var(--border-light);
        }
        .link-group a {
            color: var(--brand);
            text-decoration: none;
            font-weight: 500;
        }
        .link-group a:hover {
            text-decoration: underline;
        }
        .form-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 32px 30px;
            box-shadow: var(--shadow);
            margin: 40px 0;
            border: 1px solid var(--border-light);
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 1rem;
            background: var(--light-bg);
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--brand);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .btn {
            background: var(--brand);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: var(--brand-dark);
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn-secondary {
            background: var(--slate);
        }
        .btn-secondary:hover {
            background: #1a2a3a;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .search-info {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        .site-footer {
            background: var(--slate);
            color: #eae3da;
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .footer-inner h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #d4ccc2;
            text-decoration: none;
        }
        .footer-inner a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.85rem;
            text-align: center;
            color: #b5aba0;
        }
        .copyright a {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: var(--cream);
                padding: 16px 0 12px;
                border-top: 2px solid var(--gold);
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                border-radius: 0;
            }
            h1 {
                font-size: 2rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 16px;
            }
            .form-section {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .feature-image img {
                max-height: 260px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        section {
            scroll-margin-top: 100px;
        }
        .schema-hidden {
            display: none;
        }
