:root {
            --primary: #8B4513; 
            --secondary: #DAA520; 
            --accent: #2E8B57; 
            --light: #FAF3E0; 
            --dark: #2C1810; 
            --text: #333333;
            --text-light: #666666;
            --shadow: rgba(44, 24, 16, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text);
            background-color: var(--light);
            background-image: radial-gradient(#e6d5b8 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary);
            letter-spacing: 1px;
        }
        .logo a span {
            color: var(--light);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--secondary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9dccd;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary);
        }
        .breadcrumb a {
            color: var(--dark);
        }
        .search-bar {
            background: linear-gradient(135deg, var(--primary), #a0522d);
            padding: 2rem 0;
            margin-bottom: 3rem;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 15px var(--shadow);
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            font-family: var(--font-heading);
        }
        .search-input:focus {
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #ffc107;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 20px var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 10px var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--dark);
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            text-align: center;
            margin-top: 0;
            padding-bottom: 1rem;
            border-bottom: 3px double var(--secondary);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            padding-left: 1rem;
            border-left: 5px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark);
            background-color: #f8f4e9;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px dashed var(--secondary);
            margin: 2rem 0;
        }
        .term {
            font-weight: bold;
            color: var(--primary);
            font-style: italic;
        }
        em {
            color: var(--accent);
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 8px solid white;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.8rem;
            font-style: italic;
        }
        .interactive-section {
            background: linear-gradient(145deg, #f5efe6, #fff);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border: 1px solid #e3d9c6;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--secondary);
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #267049;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .longtail-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--secondary);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--light);
            display: block;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        .site-footer {
            background-color: #1a0f0a;
            color: #b8a99a;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #3a2c25;
            width: 100%;
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: var(--border-radius);
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
