        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-green: #2e8b57;
            --dark-green: #1a5c3a;
            --light-green: #90ee90;
            --gold: #ffd700;
            --cream: #fffdd0;
            --text-dark: #2c3e50;
            --text-light: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--light-green);
        }
        .logo span {
            background: linear-gradient(45deg, var(--gold), white);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .breadcrumb {
            background-color: var(--cream);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: 10px;
            margin: 2rem auto;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            color: var(--dark-green);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--primary-green);
        }
        h3 {
            color: var(--dark-green);
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-green);
            background-color: rgba(46, 139, 87, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: var(--cream);
            border-left: 4px solid var(--gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            text-align: center;
        }
        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin: 2rem auto;
            display: block;
            border: 5px solid var(--light-green);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .interactive-section {
            background-color: #f9f9f9;
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px dashed var(--primary-green);
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 2.5rem;
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
        }
        button {
            background: linear-gradient(to right, var(--primary-green), var(--dark-green));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--gold);
            transform: scale(1.2);
        }
        sidebar {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-green);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--dark-green);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-green);
        }
        .widget-content ul {
            list-style: none;
        }
        .widget-content li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }
        .widget-content a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
        }
        .widget-content a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }
        .footer-links {
            background-color: var(--dark-green);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--gold);
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            sidebar {
                order: -1;
                margin-bottom: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background-color: rgba(0, 0, 0, 0.9);
                padding: 1rem;
                border-radius: 10px;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .feature-image {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            article {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1rem;
            }
        }
        @media print {
            .interactive-section,
            .hamburger,
            footer,
            .footer-links {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
