: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);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        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: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-blue);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
            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 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a {
            color: var(--text-light);
            display: block;
            padding: 1rem;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: #6c757d;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-bg);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            color: var(--primary-green);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary-gold);
        }
        h3 {
            color: var(--dark-bg);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: #495057;
            background: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--secondary-gold);
            border-radius: 0 5px 5px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--secondary-gold);
            margin: 1.5rem 0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary-green);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .card h3 {
            color: var(--primary-green);
        }
        .form-container {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
        }
        button, .btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background-color: var(--dark-bg);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: var(--secondary-gold);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        aside h3 {
            color: var(--primary-green);
            margin-top: 0;
        }
        .related-links {
            list-style: none;
            margin-top: 1rem;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #dee2e6;
        }
        .web-links {
            background: var(--dark-bg);
            color: white;
            padding: 2rem;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link a {
            color: var(--text-light);
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .web-link a:hover {
            color: var(--secondary-gold);
        }
        footer {
            background: #0a290a;
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }
        .social-icons {
            margin: 1rem 0;
            display: flex;
            justify-content: center;
            gap: 1rem;
            font-size: 1.5rem;
        }
        .social-icons a {
            color: var(--text-light);
        }
        .social-icons a:hover {
            color: var(--secondary-gold);
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
