:root {
            --primary-green: #3b8526;
            --secondary-green: #5a9c4a;
            --dark-green: #1f4d12;
            --accent-brown: #8b4513;
            --light-bg: #f5f5f5;
            --text-dark: #222;
            --text-light: #eee;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-green);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-brown);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(to right, var(--dark-green), var(--primary-green));
            color: var(--text-light);
            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: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: #ffcc00;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9f5e3;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #777;
        }
        .search-bar {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-bar h2 {
            margin-bottom: 1rem;
            color: var(--dark-green);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--secondary-green);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--dark-green);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--dark-green);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary-green);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--secondary-green);
        }
        h3 {
            color: var(--accent-brown);
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #f0f9ed;
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .term {
            font-weight: bold;
            color: var(--dark-green);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #ddd;
        }
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-green);
        }
        .rating-section, .comment-section {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .rating-section h2, .comment-section h2 {
            border: none;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffcc00;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: var(--dark-green);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #e9f5e3;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        footer {
            background: var(--dark-green);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a6b2a;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--dark-green);
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            nav ul.active {
                right: 0;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-content, .web-links {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 5px;
                padding: 0.8rem;
            }
        }
