        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #4CAF50;
            --secondary-green: #8BC34A;
            --accent-yellow: #FFEB3B;
            --dark-gray: #333;
            --light-gray: #f5f5f5;
            --zombie-teal: #009688;
            --sunflower-orange: #FF9800;
            --text-color: #222;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--zombie-teal);
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--sunflower-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-green);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, var(--primary-green), #2E7D32);
            color: white;
            padding: 15px 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: 2.2rem;
            font-weight: 900;
            color: var(--accent-yellow);
            text-shadow: 2px 2px 0 var(--dark-gray);
            letter-spacing: -1px;
        }
        .logo span {
            color: white;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: var(--light-gray);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-container {
            max-width: 600px;
            margin: 30px auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary-green);
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: var(--secondary-green);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary-green);
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        article h3 {
            color: var(--zombie-teal);
            margin: 25px 0 15px;
            font-size: 1.7rem;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--sunflower-orange);
        }
        .highlight {
            background: #FFF9C4;
            padding: 20px;
            border-left: 5px solid var(--accent-yellow);
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        aside {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--dark-gray);
            border-bottom: 2px solid var(--primary-green);
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .widget-links li:before {
            content: '🌱';
            position: absolute;
            left: 0;
        }
        .interactive-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            margin-top: 20px;
        }
        .stars {
            display: flex;
            direction: row-reverse;
            justify-content: flex-end;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-right: 5px;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--accent-yellow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background: #2E7D32;
            color: white;
            padding: 40px 0;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            margin: 10px;
            padding: 12px 20px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: white;
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        footer {
            background: var(--dark-gray);
            color: #bbb;
            text-align: center;
            padding: 30px 0;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--primary-green);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 20px;
            }
            .hero {
                padding: 70px 20px;
            }
        }
