        :root {
            --primary-dark: #1a472a;
            --primary-main: #2e7d32;
            --primary-light: #4caf50;
            --accent-gold: #ffb300;
            --accent-slate: #37474f;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f8f9fa;
            --bg-card: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1280px;
        }
        * {
            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: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-main);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { color: var(--accent-gold); font-weight: 600; }
        .emoji { margin-right: 8px; }
        .section-spacing { padding: 60px 0; }
        .mobile-hidden { display: none; }
        @media (min-width: 768px) {
            .mobile-hidden { display: block; }
            .section-spacing { padding: 80px 0; }
        }
        header {
            background-color: var(--primary-dark);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px 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: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover { color: var(--accent-gold); }
        .desktop-nav {
            display: none;
        }
        @media (min-width: 992px) {
            .desktop-nav { display: flex; gap: 30px; }
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after { width: 100%; }
        .hamburger {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (min-width: 992px) {
            .hamburger { display: none; }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--primary-dark);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav a {
            display: block;
            color: white;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.05);
            padding-left: 25px;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 15px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a { color: var(--text-light); }
        .breadcrumb a:hover { color: var(--primary-main); }
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (min-width: 768px) {
            .hero h1 { font-size: 3.5rem; }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
        }
        .btn-primary:hover {
            background-color: #ffa000;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .search-module {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: -40px auto 40px;
            position: relative;
            z-index: 2;
        }
        .search-module h2 {
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        @media (min-width: 576px) {
            .search-form { flex-direction: row; }
        }
        .search-input {
            flex-grow: 1;
            padding: 16px 20px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-main);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        .search-btn {
            padding: 16px 30px;
            background: var(--primary-main);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        @media (min-width: 992px) {
            .content-grid { grid-template-columns: 1fr 300px; }
        }
        .article-content h2 {
            color: var(--primary-dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent-gold);
            font-size: 2rem;
        }
        .article-content h3 {
            color: var(--accent-slate);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        .article-content li { margin-bottom: 10px; }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .pull-quote {
            border-left: 5px solid var(--accent-gold);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: var(--accent-slate);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .data-table th {
            background-color: var(--primary-dark);
            color: white;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .data-table tr:hover {
            background-color: #f1f8e9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-light);
        }
        .rating-widget .stars {
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .rating-widget p { margin-bottom: 15px; }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .submit-rating {
            margin-top: 15px;
            padding: 10px 20px;
            background: var(--primary-main);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            width: 100%;
            font-weight: 600;
        }
        .submit-rating:hover { background: var(--primary-dark); }
        .comments-section {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin-top: 50px;
        }
        .comments-section h2 { color: var(--primary-dark); margin-bottom: 30px; }
        .comment-form .form-group {
            margin-bottom: 20px;
        }
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--accent-slate);
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea { min-height: 150px; resize: vertical; }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary-main);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        .submit-comment {
            padding: 16px 40px;
            background: var(--primary-main);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-comment:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        .comment-list { margin-top: 50px; }
        .comment {
            padding: 25px;
            border-bottom: 1px solid #eee;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            align-items: start;
        }
        .comment:last-child { border-bottom: none; }
        .comment-avatar {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .comment-body h4 {
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        .comment-meta {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .long-tail-links {
            background: var(--primary-dark);
            padding: 50px 0;
            margin-top: 60px;
        }
        .long-tail-links h2 {
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-gold);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: white;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover { color: var(--accent-gold); }
        footer {
            background: var(--accent-slate);
            color: #ccc;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: #aaa; }
        .footer-col a:hover { color: white; }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
