        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul { list-style: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fff3cd; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        :root {
            --primary: #2c5f2d; 
            --secondary: #ff6b35; 
            --accent: #004e89; 
            --light: #f4f4f4;
            --dark: #1a1a1a;
            --success: #28a745;
            --warning: #ffc107;
            --text: #444;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1e3c1e);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon { color: var(--secondary); }
        .logo-text { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav-desktop ul {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem 0;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { display: flex; flex-direction: column; }
        .nav-mobile li { width: 100%; }
        .nav-mobile a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover { background-color: rgba(255,255,255,0.1); color: var(--secondary); }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: #6c757d;
        }
        .breadcrumb a:hover { color: var(--secondary); }
        .search-section {
            background: white;
            padding: 2.5rem 0;
            margin: 1.5rem 0;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--secondary);
        }
        .search-btn {
            background: linear-gradient(to right, var(--secondary), #ff8c42);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 35px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 53, 0.3);
        }
        main { padding: 2rem 0; }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-grid { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        article h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        article h2 {
            color: var(--accent);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--warning);
        }
        article h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.8rem;
            text-align: justify;
            color: var(--text);
        }
        article blockquote {
            border-left: 5px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .featured-img {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 2rem;
            color: #ffc107;
            margin-bottom: 15px;
        }
        .rating-form label { display: block; margin-bottom: 8px; font-weight: 600; }
        .rating-form select, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { background-color: #003a6b; }
        .comment-form textarea { min-height: 150px; resize: vertical; }
        .tip-box {
            background: #e7f4ff;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box h4 { color: var(--accent); margin-bottom: 10px; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 5px solid var(--secondary);
            transition: transform 0.3s;
        }
        .stat-card:hover { transform: translateY(-10px); }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-desc { margin-top: 10px; color: #666; }
        .footer-links-section {
            background: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--accent);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: var(--secondary); }
        footer {
            background: var(--dark);
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #444;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-desktop { display: none; }
            .hamburger { display: block; align-self: flex-end; margin-top: -50px; }
            .logo a { font-size: 1.8rem; }
            article h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.7rem; }
            article { padding: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { width: 100%; border-radius: 8px; }
            .footer-content { flex-direction: column; text-align: center; }
        }
