        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-green: #2a6b2a;
            --felt-green: #35654d;
            --accent-gold: #d4af37;
            --light-beige: #f5f1e6;
            --dark-text: #222222;
            --medium-gray: #666666;
            --light-gray: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #f9f9f9;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-gold);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 2px solid var(--primary-green);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--felt-green);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-green);
            cursor: pointer;
        }
        nav {
            padding: 15px 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            justify-content: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: var(--primary-green);
            color: white;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--medium-gray);
            background-color: var(--light-beige);
            border-bottom: 1px solid var(--light-gray);
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            background: linear-gradient(rgba(42, 107, 42, 0.9), rgba(53, 101, 77, 0.9)), url('https://images.unsplash.com/photo-1596445836561-991bcd39a86d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 20px;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-main {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .content-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        h1, h2, h3 {
            color: var(--primary-green);
            margin-top: 1.8em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--felt-green);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--felt-green);
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            margin: 30px 0;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent-gold);
            margin: 30px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary-green);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--medium-gray);
            margin-top: 10px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--medium-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--felt-green);
            border-left: 5px solid var(--accent-gold);
            padding: 20px 30px;
            margin: 40px 0;
            background-color: rgba(245, 241, 230, 0.5);
        }
        blockquote:before {
            content: "“";
            font-size: 4rem;
            color: var(--accent-gold);
            line-height: 0;
            vertical-align: -0.4em;
            margin-right: 10px;
        }
        .interactive-section {
            margin: 50px 0;
        }
        .rating-form, .comment-form {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .form-title {
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: var(--light-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: var(--accent-gold);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-text);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--light-gray);
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary-green);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .submit-btn:hover {
            background-color: var(--felt-green);
            transform: translateY(-2px);
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--primary-green);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-beige);
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        .widget-list li:last-child {
            border-bottom: none;
        }
        .widget-list a {
            text-decoration: none;
            color: var(--dark-text);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .widget-list a:hover {
            color: var(--primary-green);
        }
        .widget-list i {
            color: var(--accent-gold);
        }
        .author-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
        }
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-gold);
        }
        .longtail-links {
            background-color: var(--light-beige);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            text-decoration: none;
            color: var(--primary-green);
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--felt-green);
            color: white;
            padding: 50px 0 30px;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: white;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 15px;
            margin-top: 0;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
            margin-top: 20px;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                padding: 0;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
                padding: 15px 0;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid var(--light-gray);
            }
            .nav-links a:hover {
                background-color: var(--light-beige);
                color: var(--primary-green);
            }
            .article-header {
                padding: 40px 20px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .content-main {
                padding: 25px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-main, .widget, .rating-form, .comment-form {
            animation: fadeIn 0.5s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(42, 107, 42, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(42, 107, 42, 0); }
            100% { box-shadow: 0 0 0 0 rgba(42, 107, 42, 0); }
        }
        .highlighted-term {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 600;
        }
        .text-center { text-align: center; }
        .text-gold { color: var(--accent-gold); }
        .text-green { color: var(--primary-green); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .emoji { font-size: 1.2em; }
