        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffcc00;
            --dark-bg: #0a290a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
            --accent-blue: #007bff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), var(--primary-green));
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: white;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .hero {
            background: linear-gradient(rgba(10, 41, 10, 0.9), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary-gold);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ffd633;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3 {
            color: var(--primary-green);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content b {
            color: var(--dark-bg);
            font-weight: 700;
        }
        .highlight-box {
            background: #e7f5e9;
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }
        .side-bar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--dark-bg);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget textarea, .comment-widget input {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-widget button, .comment-widget button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: var(--dark-bg);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: var(--secondary-gold);
        }
        .footer-links {
            background: var(--dark-bg);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            border: 1px solid rgba(255,204,0,0.2);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,204,0,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--text-light);
        }
        .links-container {
            text-align: center;
        }
        .site-footer {
            background: #051405;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: var(--secondary-gold);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
