        * { 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: #2c3e50;
            background: #f8f9fa;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a5632 0%, #2e7d32 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #FFD700; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0f2e9;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a5632;
            padding: 1rem;
            border-radius: 0 0 8px 8px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child { border-bottom: none; }
        .mobile-nav a:hover { background: rgba(255,255,255,0.1); }
        .breadcrumb {
            padding: 1rem 0;
            background: #e8f5e9;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #2e7d32;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #555; }
        main { padding: 2rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        h1 {
            color: #1a5632;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #2e7d32;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #c8e6c9;
        }
        h3 {
            color: #388e3c;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #1a5632;
            font-weight: 600;
            background: #e8f5e9;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #2e7d32;
            margin-bottom: 2rem;
        }
        strong { color: #1a5632; }
        em { color: #555; }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #b3e5fc 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #81d4fa;
            margin: 2rem 0;
        }
        .stats-box {
            background: #f1f8e9;
            border: 2px solid #c5e1a5;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stats-box h4 { color: #33691e; margin-bottom: 1rem; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2e7d32;
            display: block;
        }
        .stat-label { font-size: 0.9rem; color: #666; }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            display: block;
            margin: 2rem auto;
            border: 5px solid white;
            outline: 1px solid #ddd;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        blockquote {
            border-left: 5px solid #FFD700;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
            font-style: italic;
            background: #fffde7;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        blockquote cite {
            display: block;
            margin-top: 1rem;
            color: #2e7d32;
            font-weight: 600;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li { margin-bottom: 0.5rem; }
        aside { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .widget { margin-bottom: 2rem; }
        .widget h3 { font-size: 1.3rem; color: #1a5632; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e0e0e0; }
        .search-form { display: flex; margin-bottom: 1rem; }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #c8e6c9;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #1b5e20; }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: #f1f8e9;
            border-radius: 10px;
        }
        .stars { font-size: 2rem; color: #FFD700; margin: 0.5rem 0; }
        .stars i { cursor: pointer; transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .rating-widget button {
            background: #ff9800;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 1rem;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-widget button:hover { background: #f57c00; }
        .popular-links ul { list-style: none; margin-left: 0; }
        .popular-links li { margin-bottom: 0.8rem; }
        .popular-links a {
            color: #2e7d32;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .popular-links a:hover {
            background: #e8f5e9;
            color: #1b5e20;
            padding-left: 1rem;
        }
        .comments-section {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 3rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #c8e6c9;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .comment-form input {
            padding: 0.8rem;
            border: 2px solid #c8e6c9;
            border-radius: 4px;
            margin-bottom: 1rem;
            width: 100%;
            max-width: 300px;
        }
        .comment-form button {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #1b5e20; }
        .comment {
            border: 1px solid #e0e0e0;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            background: #fafafa;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #555;
            font-size: 0.9rem;
        }
        .comment-author { font-weight: 600; color: #1a5632; }
        .comment-body { line-height: 1.6; }
        .long-tail-links {
            background: #1a5632;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #c8e6c9;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: white; text-decoration: underline; }
        footer {
            background: #0d351f;
            color: #b2dfdb;
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #81c784;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            article, .comments-section { padding: 1.5rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .stats-grid { grid-template-columns: 1fr; }
            .lead { font-size: 1.1rem; }
        }
