        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fafaf5;
            color: #1e2a2f;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a6b4a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #c7a252;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f2a22;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 1rem 0;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 3px solid #c7a252;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #1a4a3a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #2c5f4a;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --saffron: #e88d2b;
            --green: #1a6b4a;
            --white: #ffffff;
            --cream: #fdf8ee;
            --dark: #0f2a22;
            --gold: #c7a252;
            --light-green: #e3f0e9;
            --gray: #6b7a7a;
            --light-gray: #eef1ee;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2a22 0%, #1a4a3a 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.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: background 0.3s;
        }
        .my-logo i {
            color: var(--saffron);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .my-logo span {
            font-weight: 300;
            color: #cddcd5;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0ece6;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: var(--saffron);
            color: #0f2a22;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: var(--cream);
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2dcc8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: var(--gray);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--green);
        }
        .breadcrumb .current {
            color: var(--dark);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(120deg, #eaf5ef 0%, #fdf8ee 100%);
            padding: 2.5rem 0 2rem 0;
            border-bottom: 4px solid var(--gold);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #0f2a22;
        }
        .hero h1 i {
            color: var(--saffron);
        }
        .hero p {
            font-size: 1.15rem;
            color: #2d4a3e;
            max-width: 600px;
        }
        .hero-img {
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .hero-img:hover {
            transform: scale(1.01);
        }
        .hero-stats {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }
        .hero-stats span {
            background: #fff;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-stats i {
            color: var(--saffron);
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e2dcc8;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #d5e0d8;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: #fff;
            min-width: 0;
        }
        .search-form button {
            background: var(--green);
            border: none;
            color: #fff;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #0f4a36;
        }
        .main-content {
            padding: 2.5rem 0 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 24px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
        }
        .content-body .last-updated {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            display: block;
            border-left: 4px solid var(--gold);
            padding-left: 1rem;
        }
        .content-body .last-updated i {
            margin-right: 0.4rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef1ee;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--light-green);
            padding-bottom: 0.5rem;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: 0.6rem;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 10px;
            transition: background 0.2s;
            font-weight: 500;
        }
        .sidebar-links a:hover {
            background: var(--light-green);
        }
        .sidebar-links i {
            color: var(--saffron);
            font-size: 0.85rem;
            width: 1.2rem;
        }
        .rating-section {
            background: var(--cream);
            padding: 2rem 2rem;
            border-radius: 20px;
            margin: 2rem 0 1.5rem 0;
            border: 1px solid #e2dcc8;
        }
        .rating-section h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d1d5d0;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: var(--saffron);
            transform: scale(1.1);
        }
        .star-rating .selected {
            color: var(--saffron);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .rating-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-form input,
        .rating-form textarea {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid #d5e0d8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .rating-form input:focus,
        .rating-form textarea:focus {
            border-color: var(--green);
        }
        .rating-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .rating-form button {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-form button:hover {
            background: #0f4a36;
        }
        .rating-display {
            margin-top: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-display .avg {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
        }
        .rating-display .stars {
            color: var(--saffron);
            font-size: 1.4rem;
        }
        .rating-display .count {
            color: var(--gray);
        }
        .comments-section {
            margin: 2rem 0 1rem 0;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 1.8rem;
            background: #f8faf8;
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid #e2e8e2;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 1px solid #d5e0d8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--green);
        }
        .comment-form textarea {
            min-height: 70px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--saffron);
            color: #0f2a22;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #d47a1a;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-item {
            background: #f8faf8;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--gold);
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 0.3rem;
        }
        .comment-item .meta strong {
            color: var(--dark);
        }
        .comment-item .text {
            margin: 0;
        }
        .site-footer {
            background: #0f2a22;
            color: #cddcd5;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            color: #b8cfc4;
        }
        .footer-inner a:hover {
            color: var(--saffron);
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.4rem;
        }
        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a4a3e;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b8cfc4;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: var(--saffron);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #2a4a3e;
            font-size: 0.85rem;
            color: #8aa89a;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 820px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                margin: 0 auto;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2a22;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .content-body {
                padding: 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .rating-form .form-row {
                flex-direction: column;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-form input {
                border-radius: 20px 20px 0 0;
            }
            .search-form button {
                border-radius: 0 0 20px 20px;
                justify-content: center;
                padding: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
                padding: 0.2rem 0.8rem 0.2rem 0.6rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero-stats span {
                font-size: 0.8rem;
                padding: 0.3rem 0.9rem;
            }
            .content-body {
                padding: 0.8rem;
                border-radius: 16px;
            }
            .rating-section {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .hero-img {
            background: #dce6df;
            min-height: 200px;
            object-fit: cover;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-highlight {
            background: linear-gradient(to right, #fdf8ee, #f5edd6);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
        }
        .badge {
            display: inline-block;
            background: var(--light-green);
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--green);
        }
