        * {
            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.6;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2c8c3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e5f2b;
        }
        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, #2c8c3f, #1e5f2b);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(44, 140, 63, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(44, 140, 63, 0.3);
        }
        .site-header {
            background: linear-gradient(90deg, #1a472a, #2c8c3f);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 10px;
            font-size: 2rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 30px;
        }
        .main-nav a {
            color: white;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #ffdf6b;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffdf6b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9f5eb;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2c8c3f;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #e1f5e9, #f1f8e9);
            border-radius: 15px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a472a;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #2c8c3f;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9f5eb;
        }
        .article-content h3 {
            color: #1a472a;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: #1a472a;
            font-weight: 700;
        }
        .article-content em {
            background-color: #ffdf6b33;
            font-style: italic;
            padding: 0 4px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            margin-top: 10px;
            color: #666;
            font-size: 0.9rem;
        }
        .internal-links {
            background: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #2c8c3f;
        }
        .internal-links p {
            margin-bottom: 10px;
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #2c8c3f;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .widget h3 i {
            margin-right: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c8c3f;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffdf6b;
        }
        .footer-links {
            background: #1a472a;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffdf6b;
            font-weight: 500;
            display: block;
        }
        .site-footer {
            background: #0f2d1c;
            color: #bbb;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #ffdf6b;
        }
        .copyright {
            margin-top: 20px;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 10px 0 0 0;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
        }
