:root {
            --primary: #8B4513;
            --secondary: #D2691E;
            --accent: #F4A460;
            --light: #FAEBD7;
            --dark: #5D2906;
            --text: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --shadow: rgba(139, 69, 19, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --container-width: 1200px;
        }
        * {
            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.8;
            color: var(--text);
            background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background-color: var(--white);
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--dark);
        }
        .logo-icon {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 25px;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: var(--light);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 12px 0;
            border-bottom: 1px solid #e0d2c2;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--secondary);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px dashed var(--accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 25px;
            color: var(--text-light);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content section {
            margin-bottom: 60px;
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 18px var(--shadow);
            border-left: 5px solid var(--secondary);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light);
        }
        .article-content h3 {
            font-size: 1.7rem;
            color: var(--secondary);
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--dark);
            font-weight: 700;
        }
        .article-content em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, var(--light), #f8f0e6);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 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: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 5px 15px var(--shadow);
            border-top: 4px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-desc {
            color: var(--text-light);
            font-size: 1rem;
        }
        .featured-image {
            margin: 40px auto;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            transition: var(--transition);
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 18px var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--light);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #e0d2c2;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 10px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #FFD700;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 14px;
            border: 2px solid #e0d2c2;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .comments-section {
            margin-top: 60px;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 30px;
        }
        .comment {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px var(--shadow);
            border-left: 4px solid var(--accent);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: #FFD700;
        }
        .footer-links {
            background: var(--dark);
            padding: 50px 0 30px;
            color: var(--light);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid rgba(244, 164, 96, 0.2);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        .web-link a {
            color: var(--accent);
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--white);
        }
        .main-footer {
            background: var(--primary);
            color: var(--white);
            padding: 30px 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 1rem;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .desktop-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                box-shadow: 0 10px 20px var(--shadow);
                padding: 20px;
                border-top: 2px solid var(--light);
            }
            .desktop-nav.active {
                display: block;
            }
            .desktop-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .desktop-nav a {
                display: block;
                padding: 15px;
                border-radius: 8px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-wrapper {
                gap: 30px;
            }
            .article-content section {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .main-header,
            .sidebar,
            .search-form,
            .rating-widget,
            .comments-form,
            .footer-links,
            .main-footer {
                display: none;
            }
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            body {
                background: white;
                color: black;
            }
        }
