        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5632 0%, #2e7d32 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 {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(to right, #ffd700, #ffecb3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a5632;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffd700;
        }
        .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:hover {
            color: #2e7d32;
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            border-bottom: 3px solid #2e7d32;
            padding-bottom: 1.5rem;
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a5632;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: #2e7d32;
        }
        .hero-image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid #ddd;
        }
        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            font-size: 0.9rem;
        }
        h2 {
            font-size: 2rem;
            color: #1a5632;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #c8e6c9;
        }
        h3 {
            font-size: 1.6rem;
            color: #388e3c;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #f1f8e9;
            border-left: 5px solid #4caf50;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .quote {
            font-size: 1.3rem;
            color: #555;
            text-align: center;
            font-style: italic;
            padding: 2rem;
            margin: 2.5rem 0;
            background: linear-gradient(90deg, transparent, #e8f5e9, transparent);
            border-radius: 8px;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 2rem;
            color: #2e7d32;
            vertical-align: top;
            line-height: 1;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: #1b5e20;
            font-weight: 700;
        }
        em {
            color: #558b2f;
        }
        .keyword {
            background-color: #e8f5e9;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
            color: #1b5e20;
        }
        .note {
            background-color: #fffde7;
            border: 1px solid #ffd54f;
            padding: 1rem;
            border-radius: 6px;
            margin: 1.5rem 0;
        }
        .note::before {
            content: '💡 Note: ';
            font-weight: bold;
            color: #ff8f00;
        }
        .interactive-box {
            background: #fff;
            border: 2px solid #4caf50;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            text-align: center;
        }
        .interactive-box h3 {
            color: #1a5632;
            margin-top: 0;
        }
        .interactive-box form {
            display: grid;
            gap: 1rem;
            max-width: 500px;
            margin: 1.5rem auto;
        }
        .interactive-box input,
        .interactive-box textarea,
        .interactive-box select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
        }
        .interactive-box button {
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .interactive-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #1a5632;
            border-bottom: 2px solid #c8e6c9;
            padding-bottom: 0.5rem;
        }
        .widget-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .widget-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #e0e0e0;
        }
        .widget-links a:hover {
            color: #2e7d32;
            padding-left: 5px;
            transition: all 0.3s ease;
        }
        .author-bio {
            text-align: center;
        }
        .author-bio img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid #c8e6c9;
        }
        .footer-links-section {
            background-color: #2e7d32;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffecb3;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        footer {
            background-color: #1a5632;
            color: #ccc;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #ffd700;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            width: 100%;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
