:root {
            --primary: #0d3b2a;
            --secondary: #c9a227;
            --accent: #b9121b;
            --light: #f5f1e6;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        * {
            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(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
        }
        .logo span {
            color: white;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--secondary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .search-section {
            background: linear-gradient(to right, #0d3b2a, #1a5c40);
            padding: 2rem 0;
            text-align: center;
            color: white;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
        }
        .search-form button:hover {
            background-color: #e0b420;
        }
        .main-content {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 0.3rem;
        }
        .article-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #2c5530;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .article-content b, strong {
            color: var(--primary);
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--accent);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #e6f0eb;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 5rem;
            color: var(--secondary);
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.5;
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 0.1rem;
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #0a2e1f;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tag {
            background-color: #e9ecef;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
        }
        .web-links-section {
            background-color: white;
            padding: 3rem 0;
            margin-top: 2rem;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
        }
        .web-link:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
            transition: var(--transition);
        }
        .site-footer {
            background-color: var(--dark);
            color: #bbb;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            color: white;
        }
        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-img {
                height: 250px;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-form input, .search-form button {
                border-radius: 0;
                padding: 1rem;
            }
        }
