        * {
            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.6;
            color: #333;
            background-color: #f8f5f0;
            max-width: 100vw;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #2c5530;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #d4a762;
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #3e6b48;
            margin-top: 2rem;
            padding-left: 0.5rem;
            border-left: 4px solid #d4a762;
        }
        h3 {
            font-size: 1.5rem;
            color: #558564;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #2c5530;
            font-weight: 700;
        }
        em {
            color: #7a6c5d;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, #2c5530 0%, #3e6b48 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 {
            color: #f8d568;
            font-size: 2.2rem;
            font-weight: 700;
            text-decoration: none;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover {
            background-color: #d4a762;
            color: #2c5530;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            background-color: #e9e2d6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #d4c4b4;
        }
        .breadcrumb a {
            color: #3e6b48;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7a6c5d;
        }
        .search-section {
            background-color: #e9e2d6;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #d4a762;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #3e6b48;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #2c5530;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        article {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .sidebar-section {
            margin-bottom: 2rem;
        }
        .sidebar-section h3 {
            font-size: 1.3rem;
            color: #2c5530;
            border-bottom: 2px solid #d4a762;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #e9e2d6;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7a6c5d;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .interactive-section {
            background-color: #f1f8f1;
            border-left: 4px solid #3e6b48;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .rating-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f8d568;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 0.8rem;
            border: 1px solid #d4c4b4;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #3e6b48;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #2c5530;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: #e9e2d6;
            border-radius: 8px;
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 4px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #3e6b48;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #2c5530;
        }
        footer {
            background: linear-gradient(135deg, #2c5530 0%, #1e3a24 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #f8d568;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-section a {
            color: #d4c4b4;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #f8d568;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #d4c4b4;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 1rem;
                top: 1rem;
            }
            .header-content {
                position: relative;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 4px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 4px;
            }
            article, aside {
                padding: 1rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #f8f5f0;
            padding: 1rem;
            border-left: 4px solid #d4a762;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .stat-box {
            background-color: #2c5530;
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f8d568;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }
        .tip-box {
            background-color: #f1f8f1;
            border: 1px solid #3e6b48;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        .tip-box h4 {
            color: #2c5530;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
