        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f7e6;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #4a8c2f;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2d5a1c;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #4a8c2f 0%, #2d5a1c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #ffde00;
            font-size: 2rem;
            font-weight: 800;
            text-shadow: 2px 2px 0 #2d5a1c;
            letter-spacing: 1px;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .logo span {
            color: #ff6b00;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8f4dc;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #cde0bf;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb span {
            color: #4a8c2f;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(rgba(74, 140, 47, 0.85), rgba(45, 90, 28, 0.9)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #ff6b00;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #e05a00;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        article h2 {
            color: #2d5a1c;
            border-bottom: 3px solid #ffde00;
            padding-bottom: 0.5rem;
            margin: 2rem 0 1.5rem;
            font-size: 2rem;
        }
        article h3 {
            color: #4a8c2f;
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        article em, article strong {
            color: #ff6b00;
        }
        .highlight-box {
            background-color: #e8f4dc;
            border-left: 5px solid #4a8c2f;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .article-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 80%;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #2d5a1c;
            border-bottom: 2px solid #ffde00;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffde00;
        }
        .rating-widget input, .comment-widget textarea, .comment-widget input {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background-color: #4a8c2f;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background-color: #3a7324;
        }
        .footer-links {
            background-color: #2d5a1c;
            padding: 3rem 20px;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ffde00;
            display: block;
            font-weight: 500;
        }
        footer {
            background-color: #1a3d12;
            color: #b0d19e;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }
        .footer-links a {
            color: #4a8c2f;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2d5a1c;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
            .article-image {
                max-width: 100%;
            }
            .hero {
                padding: 3rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                border-radius: 50px;
                margin: 0.3rem 0;
            }
        }
        .interactive-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #ddd;
            transition: padding-left 0.3s, background 0.3s;
        }
        .interactive-list li:hover {
            padding-left: 10px;
            background-color: #f9fff5;
        }
        .btn-submit, .search-box button {
            transform: scale(1);
            transition: transform 0.2s;
        }
        .btn-submit:active, .search-box button:active {
            transform: scale(0.98);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
