        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { margin-right: 5px; }
        .section-padding { padding: 60px 0; }
        .hidden { display: none !important; }
        @media (max-width: 768px) {
            .section-padding { padding: 40px 0; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a5f23 0%, #2e8b57 100%);
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #ffde57; }
        .my-logo span { text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .main-nav a:hover { color: #ffde57; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffde57;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #2e8b57;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                padding: 0;
                z-index: 999;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .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: #1a5f23;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content-area { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header { margin-bottom: 40px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a5f23;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 15px;
        }
        .article-meta span i { margin-right: 5px; }
        .article-body h2 {
            font-size: 2rem;
            color: #2e8b57;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #38a169;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: #48bb78;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-body p.lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 300;
            border-left: 4px solid #2e8b57;
            padding-left: 20px;
            margin-bottom: 2rem;
        }
        .article-body strong { color: #2d3748; }
        .article-body a {
            color: #2e8b57;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: all 0.2s;
        }
        .article-body a:hover {
            color: #1a5f23;
            text-decoration: none;
        }
        .article-body ul, .article-body ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        .article-body li { margin-bottom: 0.5rem; }
        .highlight-box {
            background: #f1f8e9;
            border-left: 5px solid #689f38;
            padding: 20px;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a5f23;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
            font-size: 1.4rem;
        }
        .search-form { position: relative; }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #dee2e6;
            border-radius: 50px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #2e8b57;
        }
        .search-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #1a5f23; }
        .rating-widget p { margin-bottom: 15px; }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffc107; }
        #rating-value {
            font-weight: bold;
            color: #2e8b57;
            text-align: center;
            display: block;
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .rating-form button:hover { background: #1a5f23; }
        .comments-section { margin-top: 60px; }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #2e8b57;
        }
        .comment-form .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }
        .comment-form input {
            padding: 12px;
            border: 2px solid #dee2e6;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form input:focus {
            outline: none;
            border-color: #2e8b57;
        }
        @media (max-width: 576px) {
            .comment-form .form-group { grid-template-columns: 1fr; }
        }
        .comment-form button {
            padding: 12px 30px;
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #1a5f23; }
        .site-footer {
            background: #2d3748;
            color: #cbd5e0;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-widget h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #2e8b57; }
        friend-link {
            display: block;
            background: #4a5568;
            padding: 15px;
            border-radius: 6px;
            margin-top: 10px;
        }
        friend-link a {
            color: #ffde57 !important;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
