        *,
        *::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, sans-serif;
            background: #f5f2eb;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0f6c3a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --primary: #0f6c3a;
            --primary-dark: #094d29;
            --gold: #b8860b;
            --gold-light: #e6c84f;
            --cream: #f5f2eb;
            --dark: #1e2a1e;
            --gray: #6b6b6b;
            --light-gray: #e8e4dd;
            --white: #ffffff;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(145deg, #094d29, #0f6c3a);
            padding: 16px 0;
            box-shadow: 0 4px 20px 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.9rem;
            font-weight: 800;
            color: var(--gold-light);
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #f5d742;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #c7e0d0;
            letter-spacing: 0.5px;
            display: block;
            font-family: 'Segoe UI', sans-serif;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8f0ea;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: background 0.25s ease, color 0.25s ease;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--gold-light);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--gold-light);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.92rem;
            color: var(--gray);
        }
        .breadcrumb-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb-inner a {
            color: var(--primary);
        }
        .breadcrumb-inner span {
            color: var(--gray);
        }
        .breadcrumb-inner .current {
            color: var(--dark);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e3a2a, #0f6c3a);
            color: var(--white);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 4px solid var(--gold);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.92;
            line-height: 1.6;
        }
        .hero .meta {
            font-size: 0.95rem;
            opacity: 0.75;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .main-content {
            padding: 48px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-top: 48px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--gold-light);
            font-weight: 700;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #1e3a2a;
            margin-top: 32px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #2c5a3c;
            margin-top: 24px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
            padding-left: 28px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .content-body li {
            margin-bottom: 6px;
        }
        .content-body strong {
            color: var(--primary-dark);
        }
        .content-body .highlight-box {
            background: var(--white);
            border-left: 5px solid var(--gold);
            padding: 20px 28px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--light-gray);
        }
        .featured-image-wrap img {
            width: 100%;
            display: block;
        }
        .featured-image-wrap .caption {
            padding: 12px 20px;
            background: var(--white);
            font-size: 0.92rem;
            color: var(--gray);
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 14px;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.95rem;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card ul li a::before {
            content: "▸ ";
            color: var(--gold);
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .feedback-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--light-gray);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .feedback-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
        }
        .feedback-card h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: var(--dark);
        }
        .feedback-card input,
        .feedback-card textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
            margin-bottom: 16px;
            background: #fcfaf8;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .feedback-card textarea {
            resize: vertical;
            min-height: 100px;
        }
        .feedback-card .btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .feedback-card .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .site-footer {
            background: var(--dark);
            color: #d4ddd4;
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 28px;
        }
        .footer-inner h4 {
            color: var(--gold-light);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.95rem;
            color: #bccbc4;
        }
        .footer-inner a:hover {
            color: var(--gold-light);
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid #3a4f3a;
            padding-top: 20px;
            text-align: center;
            font-size: 0.88rem;
            color: #8aa08a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(9, 77, 41, 0.98);
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                gap: 4px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.3rem;
            }
            .content-body p,
            .content-body ul,
            .content-body ol {
                font-size: 0.98rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 36px 0 30px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .breadcrumb-inner {
                font-size: 0.82rem;
            }
        }
