* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #D32F2F;
            --dark: #1B5E20;
            --light: #E8F5E9;
            --text: #333333;
            --text-light: #666666;
            --gray: #f5f5f5;
            --border: #ddd;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text);
            background-color: #fff;
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 15px 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: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1rem;
        }
        nav a:hover {
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .cta-button:hover {
            background-color: #E68900;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            border-left: 5px solid var(--secondary);
            padding-left: 15px;
            margin: 30px 0 20px;
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--dark);
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        article li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: var(--light);
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating-section, .comment-section {
            background-color: var(--gray);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .rating-section h3, .comment-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: var(--secondary);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--dark);
        }
        .footer-links {
            background-color: var(--light);
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
        }
        .text-center {
            text-align: center;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-highlight {
            color: var(--accent);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .flex {
            display: flex;
        }
        .gap-10 {
            gap: 10px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
