        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #2a6e3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1d4a2a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #2a6e3f, #3a8a5f);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            font-style: italic;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ffeb3b;
            text-decoration: none;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9f5eb;
            padding: 12px 20px;
            font-size: 0.95rem;
            margin-bottom: 25px;
            border-radius: 5px;
        }
        .breadcrumb a {
            color: #2a6e3f;
        }
        .breadcrumb span {
            color: #666;
        }
        .main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #2a6e3f;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #ff9800;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #3a8a5f;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #ccc;
        }
        h3 {
            font-size: 1.6rem;
            color: #555;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #777;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        strong {
            color: #2a6e3f;
            font-weight: 700;
        }
        em {
            color: #ff9800;
            font-style: italic;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 15px;
            border-left: 4px solid #ff9800;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 18px;
        }
        li {
            margin-bottom: 8px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a6e3f;
            box-shadow: 0 0 5px rgba(42, 110, 63, 0.3);
        }
        button {
            background: linear-gradient(to right, #2a6e3f, #3a8a5f);
            color: white;
            border: none;
            padding: 14px 24px;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        button:hover {
            background: linear-gradient(to right, #1d4a2a, #2a6e3f);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        .search-box {
            background: #f1f8f4;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        .search-box h3 {
            margin-top: 0;
            color: #2a6e3f;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
        }
        .comments-section, .rating-section {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 2px solid #eee;
        }
        .comment {
            background: #f9f9f9;
            padding: 18px;
            margin-bottom: 18px;
            border-radius: 8px;
            border-left: 4px solid #3a8a5f;
        }
        .comment-author {
            font-weight: bold;
            color: #2a6e3f;
        }
        .comment-date {
            font-size: 0.9rem;
            color: #888;
        }
        .rating-stars {
            color: #ff9800;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .footer {
            background: #2a6e3f;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffeb3b;
            margin-bottom: 18px;
            font-size: 1.4rem;
        }
        .friend-links {
            list-style: none;
            padding: 0;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .friend-links a {
            color: #c8e6c9;
        }
        .friend-links a:hover {
            color: #ffeb3b;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.95rem;
            color: #c8e6c9;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a6e3f;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article, .sidebar {
                padding: 25px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            background: #fff3cd;
            color: #856404;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 25px;
            font-size: 0.95rem;
            text-align: center;
        }
