        :root {
            --primary-green: #4CAF50;
            --dark-green: #2E7D32;
            --zombie-purple: #7B1FA2;
            --sun-yellow: #FFEB3B;
            --soil-brown: #8D6E63;
            --light-bg: #f9f9f9;
            --dark-text: #333;
            --light-text: #f5f5f5;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --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.8;
            color: var(--dark-text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul { list-style: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background: var(--zombie-purple);
        }
        .btn-secondary:hover {
            background: #6A1B9A;
        }
        header {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: var(--light-text);
            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: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--sun-yellow);
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.15);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--sun-yellow);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-green);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--dark-green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(rgba(46, 125, 50, 0.85), rgba(76, 175, 80, 0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .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: var(--light-bg);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3 {
            color: var(--dark-green);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--sun-yellow);
        }
        .article-content h2 { font-size: 2.2rem; }
        .article-content h3 { font-size: 1.8rem; }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--zombie-purple);
            font-weight: 700;
        }
        .highlight-box {
            background: #e8f5e9;
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--zombie-purple);
            font-weight: 600;
            border-bottom: 1px dotted var(--zombie-purple);
        }
        .content-link:hover {
            color: var(--dark-green);
            border-bottom: 2px solid var(--dark-green);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--dark-green);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-widget select, .comment-form input, .comment-form textarea {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 100%;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .footer-links {
            background: #2a2a2a;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #333;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #444;
            transform: translateX(5px);
        }
        .web-link a {
            color: #ccc;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-green);
        }
        footer {
            background: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .social-links a:hover {
            color: var(--sun-yellow);
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .hero { padding: 3rem 1rem; }
            .article-content { padding: 1.5rem; }
            .sidebar-widget { padding: 1.2rem; }
        }
