        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #0a7e2e;
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        a:hover {
            color: #065a20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, #0a7e2e 0%, #065a20 100%);
            color: white;
            padding: 15px 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;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            font-size: 2rem;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffdd40;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: #ffdd40;
            border-bottom-color: #ffdd40;
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #065a20;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #0a7e2e;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0a7e2e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        article {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 3px solid #0a7e2e;
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #065a20;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .meta i {
            margin-right: 5px;
        }
        .article-content {
            font-size: 1.1rem;
            color: #444;
        }
        .article-content p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .article-content h2, .article-content h3 {
            color: #0a7e2e;
            margin-top: 2em;
            margin-bottom: 1em;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        .article-content h2 {
            font-size: 2rem;
        }
        .article-content h3 {
            font-size: 1.6rem;
        }
        .article-content strong {
            color: #065a20;
            font-weight: 700;
        }
        .article-content em {
            color: #555;
        }
        .highlight-box {
            background-color: #f1f8e9;
            border-left: 5px solid #0a7e2e;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted #0a7e2e;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside.sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #065a20;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #0a7e2e;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #0a7e2e;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #0a7e2e;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #065a20;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-widget label {
            font-weight: 600;
            color: #444;
        }
        .rating-widget select, .rating-widget textarea, .rating-widget input {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: #0a7e2e;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #065a20;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffc107;
            margin: 10px 0;
        }
        .star {
            cursor: pointer;
        }
        .comments-section {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 40px;
        }
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-form .full-width {
            grid-column: 1 / -1;
        }
        .comment-form input, .comment-form textarea {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            grid-column: 1 / -1;
            background-color: #0a7e2e;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #065a20;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .comment {
            padding: 25px;
            border-radius: 10px;
            background-color: #f8f9fa;
            border-left: 4px solid #0a7e2e;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: bold;
            color: #065a20;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: #e9ecef;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #0a7e2e;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link i {
            color: #065a20;
        }
        footer {
            background-color: #065a20;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.9rem;
            color: #b3e0c2;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
        }
