        * { 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;
            background-image: linear-gradient(to bottom, #e6f7e9 0%, #f8f9fa 100px);
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #2e7d32; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1b5e20; text-decoration: underline; }
        ul, ol { padding-left: 1.5em; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: #1b5e20; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #4caf50; padding-bottom: 0.5rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; margin-top: 3rem; padding-left: 0.5rem; border-left: 5px solid #81c784; }
        h3 { font-size: 1.8rem; margin-top: 2.5rem; color: #388e3c; }
        h4 { font-size: 1.4rem; margin-top: 2rem; color: #4caf50; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        .lead { font-size: 1.25rem; color: #555; font-weight: 300; }
        .text-center { text-align: center; }
        .last-updated { font-size: 0.9rem; color: #777; font-style: italic; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #ccc; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 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-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #c8e6c9;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover { color: white; text-decoration: none; }
        .my-logo i { color: #ffd54f; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #e8f5e9;
            font-weight: 500;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active { color: white; border-bottom-color: #ffd54f; text-decoration: none; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #2e7d32;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e8f5e9;
            padding: 12px 15px;
            border-bottom: 1px solid #4caf50;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .my-logo { font-size: 1.8rem; }
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 12px 20px;
            border-radius: 5px;
            margin: 15px 0;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #2e7d32; }
        .breadcrumb span { color: #666; }
        .main-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid #ddd;
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.02); }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            padding: 10px;
            background: #f9f9f9;
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child { border-bottom: none; }
        .sidebar-widget h3 { font-size: 1.4rem; margin-top: 0; }
        .interactive-form {
            background: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1b5e20;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #a5d6a7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #2e7d32;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, #1b5e20, #2e7d32);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
            direction: ltr;
        }
        .rating-stars input { display: none; }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label { color: #ffd54f; }
        .related-links {
            background: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 20px;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .related-links h4 { margin-top: 0; }
        .related-links ul { list-style: none; padding-left: 0; }
        .related-links li { margin-bottom: 0.8rem; }
        .related-links a { display: flex; align-items: center; gap: 10px; }
        .related-links a::before { content: '🌿'; }
        .site-footer {
            background: #1b5e20;
            color: #c8e6c9;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 2rem;
        }
        .footer-section h3 { color: #ffd54f; border: none; padding: 0; margin-top: 0; font-size: 1.4rem; }
        .footer-links { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #e8f5e9; }
        .footer-links a:hover { color: white; text-decoration: underline; }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        friend-link a {
            color: #c8e6c9;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link a::before { content: '🤝'; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2e7d32;
            font-size: 0.9rem;
            color: #a5d6a7;
        }
        .highlight { background-color: #fff9c4; padding: 2px 5px; border-radius: 3px; }
        .emoji-bullet::before { content: '✨ '; }
        .quote {
            font-style: italic;
            border-left: 4px solid #81c784;
            padding-left: 20px;
            margin: 2rem 0;
            color: #555;
        }
        .note {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 20px;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip { background: #f1f8e9; border-left-color: #7cb342; }
        .warning { background: #ffebee; border-left-color: #f44336; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
            .main-content, .sidebar { padding: 20px; }
            .header-inner, .container { padding: 0 15px; }
            .btn { padding: 12px 24px; width: 100%; }
        }
