        *,
        *::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: #f5f9f4;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1e6b3b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0f4a28;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1d5e3a 0%, #2d8f4e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: background 0.3s;
            text-decoration: none;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.22);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #ffd966;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fff;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, transform 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 16px;
            padding: 0.8rem 0.4rem;
            margin-top: 0.6rem;
        }
        .nav-mobile a {
            color: #fff;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .breadcrumb {
            background: #eaf4ed;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4e4da;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6a8f7a;
            margin-right: 0.6rem;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1e6b3b;
        }
        .breadcrumb .current {
            color: #3d5e4a;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 2rem 0 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .hero-img-wrap img {
            display: block;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-caption {
            background: rgba(0, 0, 0, 0.06);
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #3d5e4a;
            font-style: italic;
            text-align: center;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0d3b22;
            line-height: 1.2;
            margin: 1.2rem 0 0.6rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #155a33;
            margin: 2.4rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #bcd9c8;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1d6e3d;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2a7d47;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
            color: #1f2a1f;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #1f3d2a;
            background: #e6f0ea;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            border-left: 5px solid #2d8f4e;
        }
        strong,
        b {
            color: #0d3b22;
        }
        .highlight-box {
            background: #eef7f1;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin: 1.6rem 0;
            border: 1px solid #cde0d4;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .highlight-box i {
            color: #2d8f4e;
            margin-right: 0.5rem;
        }
        .inline-link-list {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            background: #eaf4ed;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            margin: 0.8rem 0;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        .search-section {
            background: #eaf4ed;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2.4rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #bcd9c8;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #2d8f4e;
            box-shadow: 0 0 0 4px rgba(45, 143, 78, 0.15);
        }
        .search-form button {
            padding: 0.9rem 2rem;
            background: #1d5e3a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #0f4a28;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0ede6;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 2px solid #e0ede6;
            padding-bottom: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d4e4da;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafdfb;
            transition: border-color 0.3s;
            outline: none;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #2d8f4e;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.6rem;
            background: #1d5e3a;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #0f4a28;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e0c070;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: transform 0.15s, color 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #eaf4ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.4rem 0 1.2rem;
            border: 1px solid #cde0d4;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #0d3b22;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        friend-link .fl-list a {
            background: #fff;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #bcd9c8;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link .fl-list a:hover {
            background: #d4e4da;
            border-color: #2d8f4e;
            text-decoration: none;
        }
        .site-footer {
            background: #1a2e20;
            color: #cfe0d4;
            padding: 2.2rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 4px solid #2d8f4e;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        .site-footer .copyright strong {
            color: #b5d9c4;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile.open {
                display: flex;
            }
            .hero-img-wrap img {
                max-height: 260px;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 0.2rem 0.8rem 0.2rem 0.6rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            friend-link {
                padding: 1.2rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .inline-link-list {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a7a68;
            background: #eaf4ed;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 1rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8f0ec;
        }
        th {
            background: #d4e4da;
            font-weight: 600;
            color: #0d3b22;
        }
        tr:last-child td {
            border-bottom: none;
        }
