:root {
            --primary-green: #2d5016;
            --secondary-green: #5a8c29;
            --accent-gold: #e6b422;
            --accent-brown: #8b4513;
            --light-bg: #f5f7f2;
            --dark-text: #1a1a1a;
            --light-text: #f0f0f0;
            --shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--light-bg);
            background-image: linear-gradient(to bottom, rgba(245, 247, 242, 0.9), rgba(245, 247, 242, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%235a8c29" opacity="0.03"/><path d="M20,20 L80,80 M80,20 L20,80" stroke="%232d5016" stroke-width="0.5" opacity="0.05"/></svg>');
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--light-text);
            padding: 1rem 5%;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #fff;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 0.5rem;
            width: 100%;
            order: 3;
        }
        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .main-nav a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-gold);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--accent-gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .main-nav a:hover::after {
            transform: scaleX(1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        .main-content {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent-gold);
        }
        .sidebar {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-green);
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.75rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            padding-left: 0.75rem;
            border-left: 4px solid var(--secondary-green);
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--secondary-green);
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: var(--accent-brown);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary-green);
            background-color: rgba(90, 140, 41, 0.08);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(230, 180, 34, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .note {
            background-color: rgba(45, 80, 22, 0.05);
            border-left: 4px solid var(--primary-green);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .note i {
            color: var(--primary-green);
            margin-right: 0.5rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .link-list {
            list-style: none;
            margin-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .link-list a {
            display: block;
            padding: 0.75rem 1rem;
            background-color: var(--light-bg);
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 6px;
            transition: var(--transition);
            border: 1px solid #ddd;
        }
        .link-list a:hover {
            background-color: var(--secondary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            border: 3px solid #fff;
            outline: 1px solid #ddd;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid #e0e0e0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-green);
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--secondary-green);
            box-shadow: 0 0 0 3px rgba(90, 140, 41, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(45, 80, 22, 0.25);
            background: linear-gradient(to right, #3a6520, #6ba032);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            display: inline-block;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .site-footer {
            background-color: var(--primary-green);
            color: var(--light-text);
            padding: 3rem 5% 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-links a {
            color: var(--accent-gold);
            text-decoration: none;
            padding: 0.5rem 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            transition: var(--transition);
        }
        .friend-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        .last-updated {
            background-color: rgba(230, 180, 34, 0.1);
            padding: 0.75rem;
            border-radius: 6px;
            margin: 2rem 0;
            font-size: 0.95rem;
            color: var(--accent-brown);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .site-header, .sidebar, .site-footer, .search-box, .comment-form, .rating-form {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .main-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
