        *,
        *::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: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0f3b1e 0%, #1a6b3c 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f9e3a0;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f9e3a0;
            color: #f9e3a0;
        }
        nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #eaf7e6;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f9e3a0;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8efe4;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0ddd0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6a8f6a;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #4a6a4a;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0f3b1e;
            line-height: 1.2;
            margin: 0 0 12px 0;
            letter-spacing: -1px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a5632;
            margin: 48px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 4px solid #d4a017;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e6b3a;
            margin: 32px 0 12px 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a5a2a;
            margin: 24px 0 8px 0;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #2d4a2d;
            line-height: 1.8;
        }
        .hero {
            background: linear-gradient(135deg, #e8f0e4 0%, #d4e4d0 100%);
            padding: 40px 0 48px;
            border-radius: 0 0 40px 40px;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }
        .hero figure {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
        .hero figcaption {
            font-size: 0.85rem;
            color: #4a6a4a;
            padding: 8px 12px;
            background: #fafff8;
            font-style: italic;
        }
        .section-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 36px;
            margin-bottom: 28px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.25s;
        }
        .section-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .highlight-box {
            background: #f0f7ec;
            border-left: 6px solid #d4a017;
            padding: 20px 28px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0f3b1e;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f4f9f2;
            padding: 10px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: 0.2s;
            border: 1px solid #d4e4d0;
        }
        .link-grid a:hover {
            background: #e4f0e0;
            border-color: #b8860b;
            text-decoration: none;
        }
        .link-grid a i {
            color: #d4a017;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 560px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #c8dcc8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            min-width: 180px;
            background: #fff;
        }
        .search-box input:focus {
            border-color: #1a6b3c;
            box-shadow: 0 0 0 4px rgba(26, 107, 60, 0.12);
        }
        .search-box button {
            padding: 14px 32px;
            background: #1a6b3c;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #0f522a;
            transform: translateY(-2px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 24px 0;
        }
        .feedback-card {
            background: #fafff8;
            border: 1px solid #d4e4d0;
            border-radius: 20px;
            padding: 24px 28px;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d4e4d0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            transition: 0.2s;
            background: #fff;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #1a6b3c;
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.08);
            outline: none;
        }
        .feedback-card button {
            padding: 12px 28px;
            background: #1a6b3c;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 10px;
        }
        .feedback-card button:hover {
            background: #0f522a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a017;
        }
        friend-link {
            display: block;
            padding: 28px 0 16px;
            border-top: 2px solid #d4e4d0;
            margin-top: 32px;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            border-bottom: none;
        }
        friend-link .friends-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        friend-link .friends-list a {
            font-weight: 500;
            padding: 4px 0;
        }
        friend-link .friends-list a::before {
            content: "✦ ";
            color: #d4a017;
        }
        footer {
            background: #0f3b1e;
            color: #d4e4d0;
            padding: 28px 0 20px;
            margin-top: 48px;
            border-radius: 30px 30px 0 0;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        footer .copyright {
            font-size: 0.9rem;
            color: #a0c0a0;
        }
        footer .copyright strong {
            color: #f9e3a0;
        }
        @media (max-width: 860px) {
            .hero .container {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 20px 18px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-box input {
                min-width: 140px;
                padding: 12px 16px;
            }
            .search-box button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .badge {
            display: inline-block;
            background: #d4a017;
            color: #0f3b1e;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #1a6b3c;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #d4e4d0;
        }
        tr:nth-child(even) {
            background: #f8fbf6;
        }
        tr:hover {
            background: #eef5ea;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a7a5a;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #d4a017;
        }
