:root {
            --primary-color: #1a472a;
            --secondary-color: #c5a572;
            --accent-color: #d4af37;
            --text-dark: #222;
            --text-light: #f5f5f5;
            --bg-light: #f8f8f8;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            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;
            color: var(--accent-color);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--text-light);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--accent-color);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #2c5e42);
            padding: 3rem 0;
            text-align: center;
            color: white;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #e6c158;
        }
        .main-content {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background-color: #fff;
            border-radius: 8px;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            gap: 1.5rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        h3 {
            font-size: 1.5rem;
            color: #2c5e42;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background-color: var(--bg-light);
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 1rem;
            background-color: var(--bg-light);
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }
        .sidebar {
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
        }
        .sidebar-links li::before {
            content: '♠';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }
        .sidebar-links a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .user-interaction {
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .interaction-form {
            display: grid;
            gap: 1.5rem;
            max-width: 800px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(26, 71, 42, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #2c5e42;
            transform: translateY(-2px);
        }
        .footer-links-section {
            background-color: var(--primary-color);
            padding: 3rem 0;
            color: white;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            padding: 1rem 1.5rem;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--accent-color);
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .site-footer {
            background-color: #111;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .article-header h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 8px;
            }
            .search-input, .search-btn {
                border-radius: 0;
                padding: 1.2rem;
            }
        }
