        * {
            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: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1rem;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #2c5530;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #8db596;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #8db596;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #4a7c59;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
        }
        .highlight {
            background-color: #f1f8e9;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 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-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #fff;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #ffd166;
            margin-right: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: #e9f5db;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover, nav ul li a.active {
            background-color: rgba(255,255,255,0.15);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            background-color: #e9f5db;
            padding: 12px 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #cfe1b9;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #6b8e23;
        }
        .breadcrumb a {
            color: #4a7c59;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #2c5530;
            border-bottom: 2px solid #8db596;
            padding-bottom: 5px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #cfe1b9;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4a7c59;
            box-shadow: 0 0 0 3px rgba(77, 124, 89, 0.2);
        }
        button, .btn {
            background-color: #4a7c59;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s, transform 0.2s;
        }
        button:hover, .btn:hover {
            background-color: #2c5530;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 5px;
            justify-content: center;
            margin: 10px 0;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd166;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid #e9f5db;
        }
        .footer-links {
            background-color: #2c5530;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.08);
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateX(5px);
        }
        .web-link a {
            color: #cfe1b9;
            display: block;
        }
        .web-link a:hover {
            color: #ffd166;
        }
        footer {
            background-color: #1a3c23;
            color: #b7c9a5;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li a {
                display: block;
                padding: 12px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 20px;
            }
            article {
                padding: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mb-1 { margin-bottom: 1rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
