        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a6e3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e4e2c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #2a6e3f, #3a9e5d);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(42, 110, 63, 0.2);
        }
        .btn:hover {
            background: linear-gradient(135deg, #1e4e2c, #2a6e3f);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(42, 110, 63, 0.3);
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a6e3f;
        }
        header {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2a6e3f;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #3a9e5d;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background-color: #e9f5ee;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #2a6e3f;
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            border-top: 2px solid #e9f5ee;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 10px;
        }
        .mobile-nav a:hover {
            background-color: #e9f5ee;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9f5ee;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #2a6e3f;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #1e4e2c;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3a9e5d;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #2a6e3f;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #1e4e2c;
            background: #e9f5ee;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .article-content emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e9f5ee, #d4eedf);
            border-left: 6px solid #2a6e3f;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            align-self: start;
        }
        .sidebar h3 {
            color: #2a6e3f;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .internal-links {
            background: #1e4e2c;
            padding: 40px 0;
            color: white;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .internal-links .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .internal-links .container {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #b8e6ca;
            font-weight: 600;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: #0f2a1a;
            color: #b8e6ca;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #2a6e3f;
            padding-top: 20px;
        }
