        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7f1;
            background-image: radial-gradient(#d4e6c3 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #2e533c;
            border-bottom: 1px dotted #2e533c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #7bb661;
            text-shadow: 2px 2px 0 #e0f0d9;
        }
        .my-logo:hover {
            color: #5a9349;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4a7c59;
            cursor: pointer;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #7bb661;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-nav {
            display: none;
            background-color: #fff;
            padding: 20px;
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f5f9f2;
            border-bottom: 1px solid #e0ecd8;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #4a7c59;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #888;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2e533c;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #7bb661;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #4a7c59;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #d4e6c3;
        }
        h3 {
            font-size: 1.6rem;
            color: #5a9349;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #7bb661;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background-color: #f0f8eb;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 35px;
            border-left: 5px solid #7bb661;
        }
        .highlight-box {
            background-color: #f9f7f1;
            border: 2px solid #e8dfc8;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .highlight-box h4 {
            margin-top: 0;
            color: #b8860b;
        }
        .pull-quote {
            font-size: 1.4rem;
            font-style: italic;
            color: #555;
            text-align: center;
            padding: 30px;
            margin: 40px 0;
            border-top: 3px double #d4e6c3;
            border-bottom: 3px double #d4e6c3;
        }
        .data-vis {
            background: linear-gradient(135deg, #e6f3df, #cde8c4);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .data-vis h4 {
            text-align: center;
        }
        .bar-container {
            height: 24px;
            background-color: #fff;
            border-radius: 12px;
            margin: 15px 0;
            overflow: hidden;
            position: relative;
        }
        .bar {
            height: 100%;
            background: linear-gradient(90deg, #7bb661, #5a9349);
            border-radius: 12px;
            width: 0;
            animation: fillBar 2s ease-out forwards;
        }
        @keyframes fillBar {
            to { width: var(--width); }
        }
        .bar-label {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #2e533c;
            font-weight: bold;
            z-index: 1;
        }
        .featured-image {
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }
        .link-list {
            background-color: #f0f8eb;
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
        }
        .link-list li:before {
            content: '🌿';
            margin-right: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #4a7c59;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #7bb661;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #5a9349;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
        }
        .comment-form button {
            background-color: #4a7c59;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #2e533c;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        .popular-posts li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
        }
        .popular-posts li:last-child {
            border-bottom: none;
        }
        .site-footer {
            background-color: #2e533c;
            color: #d4e6c3;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2rem;
            color: #a3d977;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #a3d977;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #d4e6c3;
        }
        .footer-links a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        friend-link a {
            color: #a3d977;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3e6b4c;
            font-size: 0.9rem;
            color: #a3c9a8;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-top { padding: 12px 0; }
            h1 { font-size: 2.2rem; padding-left: 15px; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .article-content { padding: 25px; }
            .main-content { gap: 25px; padding: 25px 0; }
            .intro, .highlight-box { padding: 20px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            .my-logo { font-size: 1.8rem; }
        }
