        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2a7a3e;
            transition: color 0.3s;
        }
        a:hover {
            color: #1e5a2b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .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);
            border: 0;
        }
        .site-header {
            background: linear-gradient(to right, #1b5e20, #2e7d32);
            color: white;
            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;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #c8e6c9;
        }
        .logo-text {
            font-family: 'Trebuchet MS', sans-serif;
            letter-spacing: -0.5px;
        }
        .logo-text span {
            color: #c8e6c9;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e8f5e9;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            color: white;
            border-bottom-color: #c8e6c9;
        }
        .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 {
            display: none;
            flex-direction: column;
            background-color: #2e7d32;
            padding: 20px;
            gap: 15px;
            border-top: 1px solid #4caf50;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e8f5e9;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background-color: #1b5e20;
            color: white;
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb a {
            color: #388e3c;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        }
        h1 {
            color: #1b5e20;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #c8e6c9;
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            color: #2e7d32;
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-top: 10px;
        }
        h3 {
            color: #388e3c;
            font-size: 1.6rem;
            margin: 28px 0 15px;
        }
        h4 {
            color: #43a047;
            font-size: 1.3rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            color: #555;
            font-weight: 500;
            background-color: #f1f8e9;
            padding: 20px;
            border-left: 5px solid #4caf50;
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border: 2px solid #81c784;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(129, 199, 132, 0.2);
        }
        .term {
            font-weight: bold;
            color: #1b5e20;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            border: 5px solid #e8f5e9;
            margin: 25px auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 4px solid #4caf50;
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
            font-style: italic;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-top: 5px solid #4caf50;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1b5e20;
            line-height: 1;
        }
        .stat-label {
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }
        .sidebar-title {
            color: #1b5e20;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c8e6c9;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #c8e6c9;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: #4caf50;
        }
        .search-btn {
            background: #4caf50;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 22px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #388e3c;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-label {
            font-weight: 600;
            color: #444;
        }
        .form-input, .form-textarea, .form-select {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            border-color: #4caf50;
            outline: none;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1b5e20, #388e3c);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(27, 94, 32, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .long-tail-section {
            margin: 50px 0 30px;
            padding-top: 30px;
            border-top: 2px dashed #c8e6c9;
        }
        .long-tail-title {
            text-align: center;
            color: #1b5e20;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: #e8f5e9;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #c8e6c9;
        }
        .web-link:hover {
            background: #c8e6c9;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
        }
        .web-link a {
            color: #2e7d32;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1b5e20;
            color: #e8f5e9;
            margin-top: 60px;
        }
        .footer-content {
            padding: 40px 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4caf50;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #c8e6c9;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            background-color: #0d4010;
            color: #a5d6a7;
            font-size: 0.9rem;
        }
