* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f0e8;
            color: #2c2c2c;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #2d5016;
            text-decoration: underline;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c9a84c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f3a0e, #2d5016);
            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;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5f0e8;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            color: #f5f0e8;
        }
        .my-logo i {
            color: #c9a84c;
            font-size: 1.8rem;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: #c9a84c;
            margin-left: 4px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
            gap: 5px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f5f0e8;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f5f0e8;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: #c9a84c;
            color: #1f3a0e;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #e8e0d4;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cdbf;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #2d5016;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #8a7f6e;
        }
        .breadcrumb .current {
            color: #5a4a34;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d5016 0%, #4a7a2a 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 4px solid #c9a84c;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
        .hero h1 i {
            color: #c9a84c;
            margin-right: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.92;
            max-width: 760px;
            margin: 0 auto 18px;
        }
        .hero .badge {
            display: inline-block;
            background: #c9a84c;
            color: #1f3a0e;
            padding: 4px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .hero .last-updated {
            margin-top: 14px;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            max-width: 620px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #d6cdbf;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #2d5016;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #2c2c2c;
        }
        .search-form button {
            background: #2d5016;
            color: #fff;
            border: none;
            padding: 0 28px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #1f3a0e;
        }
        .main-content {
            padding: 40px 0 60px;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            background: #fff;
            border-radius: 16px;
            padding: 36px 40px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .content-body h2 {
            font-size: 1.9rem;
            color: #1f3a0e;
            margin: 36px 0 14px;
            border-bottom: 3px solid #c9a84c;
            padding-bottom: 6px;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.45rem;
            color: #2d5016;
            margin: 28px 0 10px;
        }
        .content-body h4 {
            font-size: 1.15rem;
            color: #3d6b1e;
            margin: 20px 0 8px;
            font-weight: 700;
        }
        .content-body p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .content-body ul,
        .content-body ol {
            margin: 12px 0 20px 24px;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body .featured-img {
            margin: 24px 0;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .content-body .highlight-box {
            background: #f0f7ea;
            border-left: 5px solid #2d5016;
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .content-body .highlight-box i {
            color: #c9a84c;
            margin-right: 8px;
        }
        .content-body .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .content-body .stat-card {
            background: #f5f0e8;
            padding: 16px 12px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e0d6c8;
        }
        .content-body .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #2d5016;
        }
        .content-body .stat-card .label {
            font-size: 0.85rem;
            color: #5a4a34;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #1f3a0e;
            margin-bottom: 12px;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
        }
        .sidebar-card ul li a {
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: #c9a84c;
            font-size: 0.8rem;
        }
        .sidebar-card ul li a:hover {
            color: #c9a84c;
        }
        .feedback-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e8e0d4;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .feedback-card {
            background: #f9f6f0;
            border-radius: 14px;
            padding: 24px 26px;
            border: 1px solid #e8e0d4;
        }
        .feedback-card h3 {
            font-size: 1.25rem;
            color: #1f3a0e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #c9a84c;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 1px solid #d6cdbf;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #2d5016;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #2d5016;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .feedback-card .btn:hover {
            background: #1f3a0e;
        }
        .feedback-card .btn i {
            margin-right: 8px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d6cdbf;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #c9a84c;
        }
        friend-link {
            display: block;
            padding: 24px 0;
        }
        .friend-links-wrap {
            background: #e8e0d4;
            padding: 28px 0;
            border-top: 3px solid #c9a84c;
        }
        .friend-links-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 28px;
        }
        .friend-links-wrap .label {
            font-weight: 700;
            color: #1f3a0e;
            font-size: 1.05rem;
        }
        .friend-links-wrap a {
            color: #2d5016;
            text-decoration: none;
            font-weight: 500;
        }
        .friend-links-wrap a:hover {
            text-decoration: underline;
            color: #c9a84c;
        }
        .site-footer {
            background: #1f3a0e;
            color: #e0dcc5;
            padding: 28px 0 20px;
            font-size: 0.9rem;
            margin-top: auto;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .site-footer a {
            color: #c9a84c;
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        .site-footer .copyright {
            opacity: 0.8;
            font-size: 0.85rem;
        }
        @media (max-width: 960px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1f3a0e;
                padding: 16px 0;
                margin-top: 12px;
                border-radius: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                border-radius: 0;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero h1 i {
                display: block;
                margin: 0 auto 8px;
            }
            .content-body {
                padding: 24px 18px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .friend-links-wrap .container {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 18px;
            }
        }
