        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #1e7e34;
            --secondary-green: #28a745;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-primary: #333;
            --text-secondary: #666;
            --accent-gold: #ffc107;
            --card-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-green);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-green);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-green);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-green);
        }
        .mobile-nav {
            display: none;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.08);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: var(--light-bg);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            background-color: #fff;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--primary-green);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 5px;
        }
        .content-section {
            max-width: 900px;
            margin: 0 auto 50px;
            padding: 0 20px;
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--secondary-green);
            margin: 25px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content-section p.lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-primary);
            background-color: #f8fff9;
            padding: 20px;
            border-left: 5px solid var(--primary-green);
            border-radius: 0 5px 5px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8fff9, #e8f5e9);
            border: 1px solid #c8e6c9;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: var(--card-shadow);
        }
        .highlight-box h3 {
            color: #2e7d32;
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary-green);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        .featured-image {
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .featured-image figcaption {
            padding: 10px;
            background-color: #f1f8e9;
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-align: center;
        }
        .interactive-module {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #dee2e6;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .module-title i {
            font-size: 1.8rem;
            color: var(--primary-green);
        }
        .module-title h2 {
            margin: 0;
            font-size: 1.8rem;
        }
        .search-form, .comment-form, .rating-form {
            display: grid;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 10px 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .btn {
            padding: 12px 30px;
            background-color: var(--primary-green);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-links-section {
            background-color: #e9f5eb;
            padding: 40px 20px;
            border-top: 1px solid #c8e6c9;
            border-bottom: 1px solid #c8e6c9;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-weight: 500;
        }
        .web-link i {
            color: var(--primary-green);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: #aaa;
            padding: 40px 20px 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-links-col h4 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .footer-links-col ul {
            list-style: none;
        }
        .footer-links-col li {
            margin-bottom: 8px;
        }
        .footer-links-col a {
            color: #aaa;
        }
        .footer-links-col a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .article-header h1 { font-size: 2.3rem; }
            .content-section h2 { font-size: 1.8rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 12px 15px; }
            .article-header h1 { font-size: 2rem; }
            .article-meta { flex-direction: column; gap: 8px; align-items: center; }
            .content-section { padding: 0 15px; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; }
            .footer-links { flex-direction: column; gap: 20px; }
        }
        @media (max-width: 480px) {
            .article-header h1 { font-size: 1.7rem; }
            .content-section h2 { font-size: 1.5rem; }
            .interactive-module { padding: 20px 15px; }
            .module-title h2 { font-size: 1.5rem; }
            .web-links-container { grid-template-columns: 1fr; }
        }
