        * {
            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: #2a3c24;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4a7c3a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e6a919;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #1e5a1e;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #e6a919;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            background: linear-gradient(90deg, #1e5a1e, #4a7c3a);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
        }
        h3 {
            font-size: 1.8rem;
            color: #3a6b2a;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2a3c24;
            background-color: #e8f4d9;
            padding: 20px;
            border-left: 5px solid #e6a919;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        em {
            font-style: italic;
            color: #5a7c4a;
        }
        strong {
            font-weight: 700;
            color: #1e5a1e;
        }
        blockquote {
            border-left: 4px solid #e6a919;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #4a5a3a;
            background-color: #f9ffe6;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        header {
            background: linear-gradient(135deg, #1e5a1e, #3a7c2a);
            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: #ffde57;
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #1e5a1e;
        }
        .logo a:hover {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 1.8rem;
        }
        .nav-links a {
            color: #e8f4d9;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: #e6a919;
            color: #1e5a1e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffde57;
        }
        .breadcrumb {
            background-color: #e8f4d9;
            padding: 10px 20px;
            margin: 1rem 0;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #4a7c3a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 8px;
        }
        .search-section {
            background-color: #2a3c24;
            padding: 25px 0;
            margin: 2rem 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-section h3 {
            color: #ffde57;
            margin-bottom: 1rem;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: #e6a919;
            color: #1e5a1e;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ffde57;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        .article-image {
            margin: 2rem 0;
            text-align: center;
        }
        .article-image img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border: 5px solid #e6a919;
            max-width: 80%;
            margin: 0 auto;
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        aside {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h4 {
            color: #1e5a1e;
            border-bottom: 2px solid #e6a919;
            padding-bottom: 8px;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .sidebar-links ul {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 12px;
        }
        .sidebar-links a {
            display: block;
            padding: 10px 15px;
            background-color: #f0f7e6;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .sidebar-links a:hover {
            background-color: #e6a919;
            transform: translateX(5px);
        }
        .interactive-section {
            background-color: #f9ffe6;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 2px dashed #4a7c3a;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffde57;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2a3c24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #c8d8b8;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e6a919;
            outline: none;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #4a7c3a, #3a6b2a);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #3a6b2a, #2a5a1a);
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            background-color: #2a3c24;
            padding: 30px;
            border-radius: 10px;
            margin: 3rem 0 2rem 0;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #3a5a2a;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
        .web-link a {
            color: #ffde57;
            font-weight: 600;
            display: block;
        }
        .web-link:hover {
            background-color: #4a7c3a;
            transform: scale(1.05);
        }
        footer {
            background-color: #1e2a1e;
            color: #c8d8b8;
            padding: 2.5rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #8a9a7a;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; position: absolute; right: 20px; top: 20px; }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 5px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="search"] {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 8px;
                padding: 15px;
            }
            main, aside {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside, .interactive-section, .footer-links {
            animation: fadeIn 0.8s ease-out;
        }
