        * { 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.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #1a73e8; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #0d47a1; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background: linear-gradient(135deg, #2c5530 0%, #1a3c1e 100%);
            color: #fff;
            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;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #8BC34A;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover { color: #CDDC39; }
        .logo-icon { font-size: 2rem; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #e8f5e9;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #8BC34A;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a3c1e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e8f5e9;
            padding: 0.8rem;
            border-bottom: 1px solid #2c5530;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8f5e9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a { color: #2c5530; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a3c1e;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .article-meta span { display: flex; align-items: center; gap: 0.5rem; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.02); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background: #f5f5f5;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 2rem;
            color: #2c5530;
            border-left: 5px solid #8BC34A;
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
        }
        .content-section h3 {
            font-size: 1.6rem;
            color: #388E3C;
            margin: 2rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .content-section blockquote {
            border-left: 4px solid #8BC34A;
            background: #f1f8e9;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .content-section ul, .content-section ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .content-section li { margin-bottom: 0.8rem; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .internal-link { color: #1a73e8; font-weight: 600; border-bottom: 1px dashed #1a73e8; }
        .internal-link:hover { border-bottom-style: solid; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a3c1e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #e8f5e9;
        }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #2c5530;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #1a3c1e; }
        .rating-form .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-form .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .star:hover,
        .rating-form .star.active { color: #ffc107; }
        .rating-form button, .comment-form button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { background: #0d47a1; }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
        }
        .footer-links-section {
            background: #2c5530;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links-section .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #c8e6c9;
            display: block;
            font-weight: 600;
        }
        .web-link a:hover { color: #fff; text-decoration: none; }
        .site-footer {
            background: #1a3c1e;
            color: #c8e6c9;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright { font-size: 0.95rem; }
        .footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
        .footer-nav a { color: #8BC34A; }
        .footer-nav a:hover { color: #CDDC39; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-header h1 { font-size: 2.2rem; }
            .article-content { padding: 1.5rem; }
            .main-content { gap: 2rem; }
            .content-section h2 { font-size: 1.8rem; }
            .content-section h3 { font-size: 1.4rem; }
            .footer-links-section .container { grid-template-columns: 1fr; }
        }
