        *,
        *::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', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f2b0f;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #d4a017;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #c0d6b3;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1f4a2b;
        }
        h4 {
            font-size: 1.15rem;
            color: #2d5a3a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #0f2b0f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(145deg, #0f2b0f 0%, #1a4a2a 100%);
            color: #fff;
            padding: 0.8rem 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: 0.8rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f9e7b3;
            background: rgba(255, 255, 255, 0.06);
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 1px solid rgba(212, 160, 23, 0.3);
            transition: 0.25s ease;
        }
        .my-logo i {
            color: #d4a017;
            font-size: 1.3rem;
        }
        .my-logo:hover {
            background: rgba(212, 160, 23, 0.12);
            border-color: #d4a017;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            font-weight: 400;
            color: #b8cfb8;
            display: block;
            line-height: 1;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-list li a {
            color: #e2f0e2;
            padding: 0.45rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: rgba(212, 160, 23, 0.2);
            color: #f9e7b3;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.8rem;
            color: #c0d6b3;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f9e7b3;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 820px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0f2b0f;
                padding: 0.8rem 1.2rem 1.4rem;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
                gap: 0.2rem;
                z-index: 99;
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 0.8rem;
                font-size: 1rem;
                border-radius: 12px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .breadcrumb {
            background: #e5ede5;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #cbdccb;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #6a8f6a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #3d5a3d;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #eaf4ea 0%, #d4e4d4 100%);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            margin: 1.8rem 0 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            border: 1px solid #bdd0bd;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .hero-text {
            flex: 2 1 300px;
        }
        .hero-text h1 {
            margin-top: 0;
            border-left-color: #d4a017;
        }
        .hero-text .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin: 0.6rem 0 1rem;
            font-size: 0.9rem;
            color: #3d5a3d;
        }
        .hero-text .meta i {
            color: #d4a017;
            margin-right: 0.3rem;
        }
        .hero-img {
            flex: 1 1 240px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            background: #fff;
            padding: 0.3rem;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.4rem 1.8rem;
            margin-bottom: 2.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #dce8dc;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            color: #1a3a1a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #c0d6b3;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9fbf9;
            transition: 0.25s;
            min-width: 140px;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4a017;
            outline: none;
            box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
        }
        .search-form button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.2rem;
            margin: 2rem 0 3rem;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #e2ede2;
        }
        .sidebar {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #e2ede2;
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-left: 4px solid #d4a017;
            padding-left: 0.7rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e8f0e8;
            margin: 0;
        }
        .sidebar li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar li a i {
            color: #d4a017;
            font-size: 0.8rem;
        }
        @media (max-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero {
                padding: 1.5rem 1.2rem;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
            border-radius: 14px;
            border: 1px solid #dce8dc;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafcfa;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #dce8dc;
        }
        th {
            background: #1a4a2a;
            color: #f9e7b3;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f2f8f2;
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0 1rem;
            background: #f6faf6;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            border: 1px solid #d4e3d4;
        }
        .feedback-forms .form-group {
            margin-bottom: 1rem;
        }
        .feedback-forms label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1a3a1a;
        }
        .feedback-forms input,
        .feedback-forms textarea,
        .feedback-forms select {
            width: 100%;
            padding: 0.65rem 1rem;
            border: 2px solid #c0d6b3;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            font-family: inherit;
        }
        .feedback-forms input:focus,
        .feedback-forms textarea:focus,
        .feedback-forms select:focus {
            border-color: #d4a017;
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
        }
        .feedback-forms textarea {
            resize: vertical;
            min-height: 70px;
        }
        .feedback-forms .btn-submit {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-forms .btn-submit:hover {
            background: #d4a017;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            transition: 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a017;
        }
        @media (max-width: 660px) {
            .feedback-forms {
                grid-template-columns: 1fr;
                padding: 1.2rem 1rem;
            }
        }
        .content-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f0f5f0;
            padding: 0.4rem;
            border: 1px solid #d4e0d4;
        }
        .content-img img {
            width: 100%;
            border-radius: 12px;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .content-img figcaption {
            padding: 0.6rem 0.4rem 0.2rem;
            font-size: 0.85rem;
            color: #3d5a3d;
            text-align: center;
            font-style: italic;
        }
        footer {
            background: #0f2b0f;
            color: #c8dcc8;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
            border-top: 4px solid #d4a017;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: #f9e7b3;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer a {
            color: #b8d0b8;
        }
        footer a:hover {
            color: #d4a017;
        }
        footer .copy {
            grid-column: 1 / -1;
            border-top: 1px solid #2a4a2a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8aaa8a;
        }
        friend-link {
            display: block;
            background: #1a3a1a;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1rem 0;
            border: 1px solid #2d5a2d;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 700px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #eaf4ea;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #1a5a2a;
            font-weight: 600;
            border: 1px solid #c0d6b3;
        }
        .highlight-box {
            background: #f7fbf7;
            border-left: 5px solid #d4a017;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.6rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .flex-gap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            align-items: center;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .text-small {
            font-size: 0.85rem;
            color: #4d6b4d;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
