* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green: #1e7e34;
            --green-dark: #145a24;
            --gold: #f5b342;
            --gold-light: #fce6b4;
            --bg: #f4f7f2;
            --card-bg: #ffffff;
            --text: #1f2a1f;
            --text-light: #3d4f3d;
            --border: #d0dbd0;
            --shadow: 0 8px 24px rgba(0, 20, 0, 0.08);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: var(--green);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px 24px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        @media (min-width:768px) {
            .wrapper {
                padding: 32px 48px 60px;
                margin-top: 24px;
            }
            body {
                padding: 0 24px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--border);
            margin-bottom: 20px;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--green), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            background: var(--green);
            color: #fff;
            padding: 8px 12px;
            border-radius: 40px;
            font-size: 1.2rem;
            -webkit-text-fill-color: #fff;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.88;
        }
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: var(--gold-light);
        }
        @media (min-width:768px) {
            .hamburger {
                display: none;
            }
        }
        .main-nav {
            flex-basis: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease, opacity 0.3s;
            opacity: 0;
        }
        .main-nav.active {
            max-height: 600px;
            opacity: 1;
        }
        .main-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            margin-top: 10px;
        }
        .main-nav ul li a {
            display: block;
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: background 0.2s, color 0.2s;
        }
        .main-nav ul li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--green);
        }
        .main-nav ul li a:hover {
            background: var(--gold-light);
            color: var(--green-dark);
            text-decoration: none;
        }
        @media (min-width:768px) {
            .main-nav {
                flex-basis: auto;
                max-height: none !important;
                opacity: 1 !important;
                overflow: visible;
            }
            .main-nav ul {
                flex-direction: row;
                border-top: none;
                padding-top: 0;
                margin-top: 0;
                gap: 2px;
            }
            .main-nav ul li a {
                padding: 8px 16px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: var(--text-light);
            padding: 8px 0 18px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: var(--green);
        }
        .breadcrumb span {
            color: #999;
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 600;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            color: var(--green-dark);
            letter-spacing: -0.3px;
        }
        h1 i {
            color: var(--gold);
            margin-right: 12px;
        }
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-top: 44px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid var(--gold-light);
            color: var(--green-dark);
        }
        h2 i {
            color: var(--gold);
            margin-right: 10px;
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-top: 28px;
            margin-bottom: 10px;
            color: var(--text);
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 6px;
            color: var(--text-light);
        }
        p {
            margin-bottom: 16px;
            color: var(--text-light);
        }
        .lead {
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--text);
            border-left: 4px solid var(--gold);
            padding-left: 20px;
            margin-bottom: 24px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 24px 0;
        }
        @media (min-width:600px) {
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width:960px) {
            .feature-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .feature-card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 24px 20px;
            border: 1px solid var(--border);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 20, 0, 0.1);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .feature-card h3 {
            margin-top: 0;
        }
        .img-hero {
            border-radius: var(--radius);
            margin: 28px 0;
            background: #e8efe8;
            padding: 8px;
            box-shadow: var(--shadow);
        }
        .img-hero img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .img-caption {
            font-size: 0.85rem;
            color: #777;
            text-align: center;
            padding: 8px 0 4px;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            min-width: 520px;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--green);
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8fbf8;
        }
        tr:hover {
            background: var(--gold-light);
        }
        .form-section {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 24px 20px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.92rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-family: var(--font);
            font-size: 0.95rem;
            background: #fff;
            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(--green);
            box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.15);
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: var(--green);
            color: #fff;
        }
        .btn:hover {
            background: var(--green-dark);
            transform: scale(1.02);
        }
        .btn-gold {
            background: var(--gold);
            color: var(--text);
        }
        .btn-gold:hover {
            background: #e09e2f;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-meta {
            font-size: 0.82rem;
            color: #999;
            display: flex;
            gap: 16px;
            margin-bottom: 4px;
        }
        .comment-meta strong {
            color: var(--text);
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 2px solid var(--border);
            margin-top: 40px;
        }
        .friend-links-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
            margin: 12px 0 8px;
        }
        .friend-links-wrap li a {
            font-size: 0.92rem;
            background: var(--bg);
            padding: 6px 16px;
            border-radius: 40px;
            border: 1px solid var(--border);
            transition: background 0.2s, border-color 0.2s;
            display: inline-block;
        }
        .friend-links-wrap li a:hover {
            background: var(--gold-light);
            border-color: var(--gold);
            text-decoration: none;
        }
        .site-footer {
            text-align: center;
            padding: 24px 0 8px;
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid var(--border);
            margin-top: 28px;
        }
        .site-footer p {
            margin-bottom: 4px;
            color: #999;
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .wrapper {
                padding: 12px 14px 30px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        .eeat-note {
            background: #f0f7f0;
            border-left: 4px solid var(--green);
            padding: 12px 18px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-size: 0.92rem;
        }
        .eeat-note i {
            color: var(--green);
            margin-right: 8px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 0;
            list-style: none;
            margin: 16px 0;
        }
        .link-list-inline li a {
            background: var(--bg);
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.88rem;
            border: 1px solid var(--border);
        }
        .link-list-inline li a:hover {
            background: var(--gold-light);
            border-color: var(--gold);
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        .tag-badge {
            display: inline-block;
            background: var(--gold-light);
            color: var(--green-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 40px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
