*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0f3b1e, #1a6b3c);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5e7b2;
            text-shadow: 2px 2px 0 #0f3b1e;
            transition: transform .2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: #f5c842;
            font-size: 2rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #fff3d1;
        }
        .my-logo small {
            font-size: .7rem;
            font-weight: 400;
            color: #cde0d3;
            display: block;
            letter-spacing: 0;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        nav {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }
        nav a {
            color: #eaf5e9;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: .9rem;
            transition: background .2s, color .2s;
        }
        nav a:hover,
        nav a:focus {
            background: rgba(255, 255, 255, .2);
            color: #f5e7b2;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5e7b2;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, .15);
        }
        .breadcrumb {
            background: #e8f0e5;
            padding: 10px 0;
            font-size: .85rem;
            border-bottom: 1px solid #d0ddd0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #6a8f6a;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #3f5e3f;
            font-weight: 500;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f3b1e;
            margin-bottom: .5rem;
            line-height: 1.2;
            position: relative;
        }
        h1 i {
            color: #d4a017;
            margin-right: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #e8f0e5;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: .85rem;
            color: #3f5e3f;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a5a2e;
            margin-top: 2.5rem;
            margin-bottom: .8rem;
            border-left: 6px solid #d4a017;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e4a2a;
            margin-top: 1.8rem;
            margin-bottom: .5rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d5a2d;
            margin-top: 1.2rem;
            margin-bottom: .3rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .content-img {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
            background: #fff;
            padding: 12px;
        }
        .content-img figcaption {
            font-size: .85rem;
            color: #4f6f4f;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f7ed;
            border-left: 6px solid #d4a017;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #0f3b1e;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
            border: 1px solid #dce8da;
            transition: transform .2s, box-shadow .2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #d4a017;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f3b1e;
        }
        .stat-card .label {
            font-size: .9rem;
            color: #4f6f4f;
        }
        .search-section {
            background: #e8f0e5;
            border-radius: 20px;
            padding: 24px 30px;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-section label {
            font-weight: 600;
            color: #0f3b1e;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #c0d6bd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border .2s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #1a6b3c;
        }
        .search-form button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .1s;
        }
        .search-form button:hover {
            background: #0f3b1e;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 3rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            border: 1px solid #dce8da;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0f3b1e;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 16px;
            border: 2px solid #d0ddd0;
            border-radius: 12px;
            font-size: .95rem;
            font-family: inherit;
            outline: none;
            transition: border .2s;
            background: #fafcfa;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #1a6b3c;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 2px;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color .2s;
        }
        .feedback-card .star-rating input:checked~label,
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label {
            color: #f5c842;
        }
        .feedback-card .btn-submit {
            background: #1a6b3c;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 14px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s;
            font-size: 1rem;
        }
        .feedback-card .btn-submit:hover {
            background: #0f3b1e;
        }
        .feedback-card .btn-submit i {
            margin-right: 6px;
        }
        footer {
            background: #0f3b1e;
            color: #d0e0d0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer h4 {
            color: #f5e7b2;
            margin-bottom: 12px;
            font-weight: 600;
        }
        footer a {
            color: #bdd8bd;
        }
        footer a:hover {
            color: #f5e7b2;
        }
        friend-link {
            display: block;
            background: #133d21;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 20px 0 10px;
            font-size: .95rem;
            border: 1px solid #2a5a32;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2a5a32;
            padding-top: 18px;
            margin-top: 20px;
            font-size: .85rem;
            color: #8faf8f;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f3b1e;
                padding: 10px 0 16px;
                border-radius: 0 0 16px 16px;
                margin-top: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 18px;
                border-radius: 0;
                border-bottom: 1px solid #1f5a2f;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .feedback-card {
                padding: 16px;
            }
        }
        .text-muted {
            color: #4f6f4f;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .list-check {
            list-style: none;
            padding-left: 0;
        }
        .list-check li {
            padding: 4px 0 4px 28px;
            position: relative;
        }
        .list-check li::before {
            content: "✔️";
            position: absolute;
            left: 0;
            color: #1a6b3c;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e0ece0;
        }
        th {
            background: #1a6b3c;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #e8f0e5;
            border-radius: 30px;
            padding: 2px 14px;
            font-size: .8rem;
            color: #1a5a2e;
        }
