        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #2a6e3f; 
            --secondary: #d4af37; 
            --accent: #8b4513; 
            --light: #f5f1e6;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --container-max: 1200px;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        .container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
        .site-header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i { margin-right: 10px; color: var(--secondary); }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active { border-color: var(--secondary); color: var(--secondary); }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin-bottom: 1rem; }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover { background-color: rgba(255,255,255,0.1); }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a { color: var(--primary); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { overflow: hidden; }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
        .featured-img {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .article-body h2, .article-body h3, .article-body h4 {
            color: var(--primary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-body h2 { font-size: 1.8rem; border-bottom: 2px solid var(--light); padding-bottom: 0.5rem; }
        .article-body h3 { font-size: 1.5rem; }
        .article-body h4 { font-size: 1.2rem; color: var(--accent); }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong { color: var(--accent); font-weight: 700; }
        .article-body em { color: var(--gray); }
        .highlight-box {
            background-color: #f0f9ff;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--dark);
            padding: 2rem;
            background-color: var(--light);
            border-radius: var(--radius);
            margin: 2rem 0;
            position: relative;
        }
        .quote::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary);
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 1.5rem;
            opacity: 0.5;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .stats-table th,
        .stats-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        .stats-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) { background-color: #f9f9f9; }
        .stats-table tr:hover { background-color: #f1f1f1; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover { background-color: #1e5a2e; }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active { color: var(--secondary); }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .form-group label { font-weight: 600; color: var(--dark); }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 110, 63, 0.2);
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover { background-color: #1e5a2e; transform: translateY(-2px); }
        .btn-secondary { background-color: var(--accent); }
        .btn-secondary:hover { background-color: #6b3510; }
        .footer-links {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #bdc3c7;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover { color: var(--secondary); text-decoration: underline; }
        .site-footer {
            background-color: var(--dark);
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .site-footer a { color: var(--secondary); text-decoration: none; }
        .site-footer a:hover { text-decoration: underline; }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2rem; }
            .main-content { gap: 2rem; padding: 2rem 0; }
            .stats-table { display: block; overflow-x: auto; }
        }
