        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #6aaa64;
            --secondary-yellow: #c9b458;
            --dark-gray: #787c7e;
            --light-gray: #d3d6da;
            --bg-white: #ffffff;
            --text-dark: #1a1a1b;
            --text-light: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text-dark);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-yellow);
            text-decoration: underline;
        }
        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-color: var(--primary-green);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: #5d9957;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .site-header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary-yellow);
        }
        .my-logo:hover {
            color: var(--primary-green);
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: var(--text-dark);
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--primary-green);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-green);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-dark);
        }
        .mobile-nav {
            display: none;
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 10px;
            border-bottom: 1px solid var(--light-gray);
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #f0f0f0;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--dark-gray);
        }
        .breadcrumb span {
            color: var(--text-dark);
            margin: 0 5px;
        }
        main {
            flex: 1;
        }
        .hero {
            background: linear-gradient(135deg, #6aaa64 0%, #c9b458 100%);
            color: white;
            padding: 80px 0;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        .article-content {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: var(--text-dark);
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        .article-content h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--primary-green);
            padding-bottom: 15px;
            margin-top: 0;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary-green);
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--secondary-yellow);
        }
        .article-content h4 {
            font-size: 1.3rem;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .article-content b, strong {
            color: var(--primary-green);
        }
        .article-content em {
            background-color: #fff9c4;
            font-style: italic;
            padding: 2px 4px;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 1.5em;
        }
        .article-content li {
            margin-bottom: 0.7em;
        }
        .feature-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-green);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--light-gray);
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.5rem;
            color: var(--secondary-yellow);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--light-gray);
            border-radius: 6px;
            min-height: 120px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding-top: 50px;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--secondary-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--primary-green);
        }
        friend-link {
            display: block;
            padding: 15px;
            background-color: #2a2a2a;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid var(--primary-green);
        }
        friend-link a {
            color: var(--text-light);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
            .hero {
                padding: 60px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
