        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #3a7d44;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #2b5e32;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #1e3a2a;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #5a8f3c;
            padding-left: 20px;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #c4b59a;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d5a3d;
        }
        h4 {
            font-size: 1.2rem;
            color: #3d6b4a;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin: 1em 0 1.5em 2em;
        }
        li {
            margin-bottom: 0.5em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --green-deep: #1e3a2a;
            --green-mid: #3a7d44;
            --green-light: #6aaf5a;
            --brown-light: #d4c9b8;
            --brown-pale: #ede7db;
            --cream: #f9f6f0;
            --dark-text: #2d2a24;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a2a 0%, #2a5a3a 100%);
            color: #fff;
            padding: 16px 0 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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: #ffe89a;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #8bc34a;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8e0d0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.92rem;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #ffe89a;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #e8e0d0;
            padding: 10px 20px;
            font-size: 0.88rem;
            border-bottom: 1px solid #ccbfaa;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #3a7d44;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #5a4f3e;
        }
        .breadcrumb .sep {
            margin: 0 4px;
            color: #9a8e7a;
        }
        .hero-image-wrap {
            margin: 24px 0 30px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-caption {
            background: rgba(30, 58, 42, 0.75);
            color: #f5f0e6;
            padding: 14px 24px;
            font-size: 0.95rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .search-section {
            background: var(--cream);
            padding: 30px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 30px 0;
            border: 1px solid #dccfc0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 12px auto 0;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ccbfaa;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #3a7d44;
            outline: none;
        }
        .search-form button {
            padding: 14px 32px;
            background: #3a7d44;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #2b5e32;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin: 30px 0;
        }
        .main-article {
            background: #fff;
            padding: 36px 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .main-article p,
        .main-article li {
            font-size: 1.05rem;
        }
        .sidebar {
            background: #fff;
            padding: 28px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 2px solid #e0d5c5;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar li {
            margin: 0;
            border-bottom: 1px solid #ede7db;
        }
        .sidebar a {
            display: block;
            padding: 12px 8px;
            font-weight: 500;
            color: #2d5a3d;
            transition: background 0.2s, padding-left 0.2s;
        }
        .sidebar a:hover {
            background: #f5f0e6;
            padding-left: 16px;
            text-decoration: none;
            border-radius: 6px;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            padding: 28px 26px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid #e0d5c5;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 120px;
            padding: 14px;
            border: 2px solid #dccfc0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            transition: border 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #3a7d44;
            outline: none;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dccfc0;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 12px;
            transition: border 0.3s;
        }
        .comment-box input:focus {
            border-color: #3a7d44;
            outline: none;
        }
        .btn-submit {
            padding: 12px 32px;
            background: #3a7d44;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: #2b5e32;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
            margin: 16px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d4c9b8;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.98rem;
            background: #faf8f4;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background: #1e3a2a;
            color: #f5f0e6;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e0d5c5;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #ede7db;
        }
        .site-footer {
            background: #1e3a2a;
            color: #d4c9b8;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #3a6a4a;
        }
        .footer-inner h4 {
            color: #ffe89a;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b8cfaa;
        }
        .footer-inner a:hover {
            color: #ffe89a;
        }
        .friend-link {
            display: block;
            padding: 6px 0;
            font-size: 0.95rem;
        }
        .friend-link a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.88rem;
            color: #9aae88;
        }
        .copyright strong {
            color: #d4c9b8;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(30, 58, 42, 0.98);
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .main-article {
                padding: 20px 16px;
            }
            .sidebar {
                padding: 20px 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 10px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero-caption {
                font-size: 0.8rem;
                padding: 10px 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 8px 12px;
            }
        }
        .tag {
            display: inline-block;
            background: #e0d5c5;
            color: #1e3a2a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .highlight-box {
            background: #f0ebe0;
            border-left: 5px solid #5a8f3c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .last-update {
            color: #7a6e5a;
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 8px 16px;
            background: #ede7db;
            border-radius: 30px;
            display: inline-flex;
        }
        .section-divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #c4b59a, transparent);
            margin: 40px 0;
        }
