        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary-green: #2d5a27;
            --secondary-brown: #8b4513;
            --accent-gold: #daa520;
            --light-bg: #f5f5dc;
            --dark-text: #2c3e50;
            --light-text: #f8f8f2;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.8;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-green), #1e3a1a);
            color: var(--light-text);
            padding: 1.5rem 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: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #fff;
            text-decoration: none;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .breadcrumb {
            background-color: #e9f5e9;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ccc;
        }
        .breadcrumb a {
            color: var(--secondary-brown);
        }
        .breadcrumb span {
            color: #666;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light-text);
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--primary-green);
            padding: 2rem;
            transition: left 0.4s ease;
            z-index: 1100;
            overflow-y: auto;
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            left: 0;
        }
        .nav-mobile a {
            display: block;
            color: var(--light-text);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            color: var(--accent-gold);
            padding-left: 10px;
        }
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1050;
        }
        .overlay.active {
            display: block;
        }
        .search-bar {
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: white;
        }
        .search-form button {
            background-color: var(--secondary-brown);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--accent-gold);
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px double var(--secondary-brown);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .content-section {
            margin-bottom: 3rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--secondary-brown);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        h3 {
            color: var(--primary-green);
            font-size: 1.7rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .card {
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .card-content {
            padding: 1.5rem;
        }
        .user-interaction {
            background-color: #f0f7f0;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .rating-section, .comment-section {
            margin-bottom: 2.5rem;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-group {
            flex: 1;
            min-width: 200px;
        }
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .submit-btn:hover {
            background-color: var(--secondary-brown);
            text-decoration: none;
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 3rem 0;
            color: white;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link a {
            color: #b8d4b8;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }
        .footer-links-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            background-color: #1a252f;
            color: #aaa;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .form-row {
                flex-direction: column;
            }
        }
