:root {
            --primary-color: #0d4a1f; 
            --secondary-color: #c9a227; 
            --accent-color: #8b0000; 
            --light-bg: #f5f5f5;
            --dark-text: #222;
            --light-text: #f8f8f8;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #fff;
            max-width: 1920px;
            margin: 0 auto;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #1a6b2e);
            color: var(--light-text);
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Georgia, serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo a:hover {
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: var(--secondary-color);
            margin: 4px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light-text);
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #444;
            background: #f9f9f9;
            padding: 1.2rem;
            border-left: 4px solid var(--secondary-color);
            margin-bottom: 2rem;
        }
        em, strong {
            color: var(--accent-color);
        }
        blockquote {
            font-style: italic;
            border-left: 5px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .feature-box {
            background: linear-gradient(to right, #f0f7f0, #fff);
            border: 1px solid #d4e6d4;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin: 2rem 0;
            transition: var(--transition);
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .feature-box h4 {
            color: var(--primary-color);
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            margin: 0 auto;
            border: 5px solid #eee;
            transition: var(--transition);
        }
        .image-container img:hover {
            border-color: var(--secondary-color);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .interactive-module {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
        }
        .interactive-module h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 74, 31, 0.1);
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--accent-color);
            transform: scale(1.03);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            font-size: 2rem;
            color: #ddd;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--secondary-color);
        }
        aside {
            background: #fff;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: var(--primary-color);
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-bg);
        }
        .related-links {
            list-style: none;
            padding: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            gap: 15px;
        }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            background: #f9f9f9;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            text-align: center;
        }
        footer {
            background: #222;
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--secondary-color);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ccc;
        }
        friend-link a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
        }
