        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f7f2;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a7c47;
            transition: color 0.3s;
        }
        a:hover {
            color: #1e5a35;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
            padding: 1rem 2rem;
            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;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2e7d32;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e8f5e9;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #555;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }
        .article {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .article h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .article-meta i {
            color: #4caf50;
        }
        .article img.featured {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid #c8e6c9;
        }
        .article h2 {
            font-size: 1.8rem;
            color: #388e3c;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a5d6a7;
        }
        .article h3 {
            font-size: 1.4rem;
            color: #43a047;
            margin: 1.5rem 0 0.8rem;
        }
        .article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article strong {
            color: #1b5e20;
            font-weight: 700;
        }
        .article emoji {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        .highlight-box {
            background: #f1f8e9;
            border-left: 5px solid #4caf50;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            background: #fff;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box h3 {
            color: #2e7d32;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #4caf50;
            border-radius: 25px 0 0 25px;
            outline: none;
        }
        .search-form button {
            background: #4caf50;
            color: #fff;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2e7d32;
        }
        .rating-widget {
            text-align: center;
            margin: 2rem 0;
        }
        .rating-widget h3 {
            color: #2e7d32;
            margin-bottom: 1rem;
        }
        .stars {
            font-size: 1.5rem;
            color: #ffc107;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            background: #2196f3;
            color: #fff;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #0d8bf2;
        }
        .footer-links {
            background: #e8f5e9;
            padding: 2rem;
            margin-top: 3rem;
        }
        .links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #fff;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #2e7d32;
            font-weight: 600;
            display: block;
        }
        .footer {
            background: #2e7d32;
            color: #fff;
            text-align: center;
            padding: 2rem;
        }
        .footer p {
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article h1 {
                font-size: 2rem;
            }
            .container {
                gap: 1.5rem;
            }
        }
