*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a5c2e;
            --primary-light: #2e8b4f;
            --accent: #ff7f00;
            --gold: #ffb800;
            --bg: #f6f9f7;
            --card: #ffffff;
            --text: #2a2a2a;
            --muted: #6b7280;
            --radius: 14px;
            --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .header {
            background: linear-gradient(135deg, #0d2b18 0%, #1a5c2e 60%, #2e8b4f 100%);
            color: #fff;
            padding: 18px 0;
            border-bottom: 4px solid var(--accent);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.65rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 1.8rem;
        }
        .my-logo span {
            background: linear-gradient(90deg, #ffb800, #ff7f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #eafff2;
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover {
            background: var(--accent);
            color: #fff;
        }
        .breadcrumb {
            background: #f1f5f3;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2e8e4;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--muted);
            margin: 0 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            margin: 32px 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        .card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
            margin-bottom: 32px;
        }
        .card h2 {
            color: var(--primary);
            font-size: 1.7rem;
            margin-bottom: 16px;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 10px;
        }
        .card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin: 20px 0 10px;
        }
        .card h4 {
            color: var(--primary-light);
            font-size: 1.1rem;
            margin: 16px 0 8px;
        }
        .hero {
            background: linear-gradient(135deg, #1a5c2e, #2e8b4f);
            color: #fff;
            border-radius: var(--radius);
            padding: 40px 32px;
            margin-bottom: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -20%;
            width: 300px;
            height: 300px;
            background: rgba(255, 184, 0, 0.15);
            border-radius: 50%;
        }
        .hero h1 {
            font-size: 2.3rem;
            margin-bottom: 12px;
            position: relative;
        }
        .hero p {
            font-size: 1.1rem;
            opacity: 0.93;
            max-width: 700px;
            margin: 0 auto 20px;
            position: relative;
        }
        .hero .badge {
            display: inline-block;
            background: var(--accent);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--muted);
            text-align: center;
            margin-bottom: 8px;
        }
        .last-updated i {
            color: var(--primary);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .feature-box {
            background: #f8fbf9;
            border: 1px solid #e2ece6;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .feature-box i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .feature-box h4 {
            font-size: 1rem;
            margin-bottom: 6px;
        }
        .inline-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            text-decoration-color: var(--gold);
            text-underline-offset: 3px;
            transition: color 0.2s;
        }
        .inline-link:hover {
            color: var(--accent);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        table th,
        table td {
            padding: 12px 14px;
            border: 1px solid #e2ece6;
            text-align: left;
        }
        table th {
            background: var(--primary);
            color: #fff;
        }
        table tr:nth-child(even) {
            background: #f8fbf9;
        }
        .quote {
            background: #fdf8ef;
            border-left: 5px solid var(--gold);
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
            font-style: italic;
        }
        .search-box {
            display: flex;
            gap: 8px;
            background: #fff;
            border-radius: 50px;
            padding: 5px 5px 5px 18px;
            box-shadow: var(--shadow);
            border: 1px solid #e2ece6;
            max-width: 100%;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 0.95rem;
            background: transparent;
        }
        .search-box button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 22px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: var(--accent);
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 16px 0;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 4px;
            font-size: 1.5rem;
            color: #cbd5cf;
            cursor: pointer;
        }
        .stars .active {
            color: var(--gold);
        }
        .rating-widget button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 8px 20px;
            cursor: pointer;
            font-weight: 600;
        }
        .rating-widget button:hover {
            background: var(--accent);
        }
        .comment-box textarea {
            width: 100%;
            border: 1px solid #e2ece6;
            border-radius: 12px;
            padding: 14px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            margin-bottom: 10px;
        }
        .comment-box button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 24px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
        }
        .comment-box button:hover {
            background: var(--accent);
        }
        .sidebar .card {
            padding: 20px;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: var(--primary);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 8px;
        }
        .sidebar ul li a {
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            padding: 6px 0;
            border-bottom: 1px dashed #e2ece6;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar ul li a:hover {
            color: var(--primary);
            padding-left: 6px;
        }
        .footer {
            background: #0d2b18;
            color: #a8c9b4;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }
        .footer h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer a {
            color: #9dc4ad;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: var(--gold);
        }
        .footer-bottom {
            border-top: 1px solid #1e3d2a;
            padding-top: 16px;
            margin-top: 24px;
            text-align: center;
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            padding: 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--gold);
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14532d;
                padding: 10px;
                border-radius: 12px;
                margin-top: 8px;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .card {
                padding: 18px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 28px 18px;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: var(--shadow);
        }
        .img-caption {
            font-size: 0.85rem;
            color: var(--muted);
            text-align: center;
            margin-bottom: 12px;
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin: 24px 0;
        }
        .pagination a {
            padding: 8px 14px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid #e2ece6;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
        }
        .pagination a:hover {
            background: var(--primary);
            color: #fff;
        }
