        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #D32F2F;
            --dark: #1B5E20;
            --light: #E8F5E9;
            --text: #212121;
            --text-light: #757575;
            --bg: #FFFFFF;
            --bg-alt: #F5F5F5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            color: var(--primary);
            padding-left: 10px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        em {
            color: var(--text-light);
        }
        header {
            background-color: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 2rem;
        }
        .logo a {
            color: white;
        }
        .logo a:hover {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 1.5rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 12px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            padding: 2.5rem 0;
            text-align: center;
            color: white;
            margin-bottom: 2.5rem;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #FF8A00;
        }
        main {
            padding: 20px 0 40px;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background-color: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFC107;
            margin: 15px 0;
        }
        .stars i {
            margin: 0 3px;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 20px;
        }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .rating-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--dark);
        }
        .comments-widget {
            max-height: 500px;
            overflow-y: auto;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-left: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .web-links {
            background-color: var(--bg-alt);
            padding: 40px 20px;
            margin: 40px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #E0E0E0;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #BDBDBD;
            font-size: 0.9rem;
        }
        .highlight {
            background-color: rgba(255, 152, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--secondary);
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background-color: var(--light);
            padding: 25px;
            border-radius: var(--radius);
            border-top: 5px solid var(--primary);
        }
        .tip-card h4 {
            color: var(--primary);
            margin-top: 0;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            body {
                font-size: 16px;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                padding-top: 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            nav.active ul {
                right: 0;
            }
            nav li {
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 18px 25px;
            }
            .content-section {
                gap: 30px;
            }
            .article-content {
                padding: 20px;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-input, .search-btn {
                border-radius: 0;
                padding: 15px;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, .search-container, .sidebar, .web-links, footer {
                display: none;
            }
            body {
                font-size: 12pt;
                color: black;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            h1, h2, h3 {
                color: black;
            }
        }
