:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0a290a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
            --accent-blue: #0d6efd;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-gold);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary-green);
        }
        .search-form {
            display: flex;
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-gold);
            color: var(--text-dark);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-gold);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9f5e9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #666;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-bg);
            margin-bottom: 1rem;
            font-size: 2.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--secondary-gold);
            padding-left: 15px;
        }
        h2, h3, h4 {
            color: var(--primary-green);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #555;
            background-color: #f0f8f0;
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-green);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px dashed var(--secondary-gold);
            margin: 25px 0;
        }
        .feature-img {
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            overflow: hidden;
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #666;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        blockquote {
            border-left: 4px solid var(--accent-blue);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary-gold);
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        button[type="submit"] {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background-color: var(--secondary-gold);
            color: var(--text-dark);
        }
        .footer-links {
            background-color: var(--dark-bg);
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 8px;
            padding: 12px 20px;
            border-radius: 30px;
            border: 1px solid rgba(255,215,0,0.2);
        }
        .web-link a {
            color: var(--text-light);
        }
        .web-link:hover {
            background: rgba(255,215,0,0.1);
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background-color: #051905;
            color: var(--text-light);
            padding: 30px 0;
            text-align: center;
        }
        .footer-bottom {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }
            .search-form {
                max-width: 100%;
                margin: 10px 0;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
                display: none;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 20px 0;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -50px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, aside {
                padding: 20px;
            }
        }
