:root {
            --primary-green: #1e7e34;
            --secondary-orange: #ff6b35;
            --dark-bg: #0a290a;
            --light-bg: #f8fff8;
            --text-dark: #222;
            --text-light: #f0f0f0;
            --shadow: 0 4px 12px rgba(0, 80, 0, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-orange);
        }
        .logo span {
            color: var(--secondary-orange);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--primary-green);
            color: white;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 0.3rem;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--secondary-orange);
        }
        .search-box input {
            border: none;
            padding: 0.6rem 1rem;
            min-width: 250px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-box button:hover {
            background: var(--secondary-orange);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ffe9;
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #c1e6c1;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary-green);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            font-size: 0.8rem;
            color: #777;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--primary-green);
        }
        .article-header h1 {
            font-size: 3.2rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.125rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #c1e6c1;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--secondary-orange);
            margin: 2.5rem 0 1.2rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.8rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e9ffe9, #d1f0d1);
            border-left: 6px solid var(--primary-green);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #444;
            text-align: center;
            padding: 2rem;
            background-color: #f8fff8;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            position: relative;
        }
        .quote::before,
        .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--secondary-orange);
            position: absolute;
            opacity: 0.3;
        }
        .quote::before {
            top: 0;
            left: 20px;
        }
        .quote::after {
            bottom: -30px;
            right: 20px;
        }
        .inline-link {
            color: var(--primary-green);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-green);
            transition: var(--transition);
        }
        .inline-link:hover {
            color: var(--secondary-orange);
            border-bottom-style: solid;
        }
        .featured-image {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .side-panel {
            background-color: #f8fff8;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .side-panel h3 {
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--secondary-orange);
            font-size: 1.6rem;
        }
        .interactive-box {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid #d1e7dd;
        }
        .interactive-box h4 {
            color: var(--primary-green);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #b1d4b1;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.2);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--secondary-orange);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
        }
        .btn-block {
            width: 100%;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid #c1e6c1;
        }
        .comments-section h2 {
            color: var(--dark-bg);
            margin-bottom: 2rem;
        }
        .comment {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-green);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: #666;
        }
        .comment-author {
            font-weight: 700;
            color: var(--dark-bg);
        }
        .web-links-section {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-section h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--secondary-orange);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 1.2rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
            font-size: 1.05rem;
            color: #a3e4a3;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background-color: #071a07;
            color: #b1d4b1;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
        }
        .footer-logo span {
            color: var(--secondary-orange);
        }
        .copyright {
            font-size: 0.95rem;
            color: #8aad8a;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 1100px) {
            .search-box input {
                min-width: 200px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .search-box input {
                min-width: 180px;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }
            .search-box input {
                width: 100%;
                min-width: unset;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
            .side-panel {
                position: static;
            }
            .web-links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
