        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2c5530;
            --secondary-color: #e6b325;
            --accent-color: #8b4513;
            --light-bg: #f5f5dc;
            --dark-text: #2d2d2d;
            --light-text: #fff;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--accent-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .highlight {
            background-color: rgba(230, 179, 37, 0.2);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        .bold-text {
            font-weight: 700;
            color: var(--primary-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        .logo a {
            color: var(--light-text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--secondary-color);
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: var(--light-text);
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light-bg);
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--accent-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            background: linear-gradient(135deg, #f5f5dc 0%, #e8dfca 100%);
            padding: 2.5rem 0;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(230, 179, 37, 0.3);
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        .sidebar h3 {
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar li::before {
            content: "▶";
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }
        .sidebar a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .interactive-section {
            background-color: #f9f9f9;
            border-left: 5px solid var(--primary-color);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 0 10px 10px 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--secondary-color);
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--primary-color);
        }
        input, textarea, select {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.15);
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 5px solid white;
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: #f0f7f0;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #e2eed2;
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--light-text);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 8px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
