:root {
            --primary-dark: #0a1f3a;
            --primary-blue: #1a5fb4;
            --primary-gold: #ffd100;
            --secondary-brown: #8b7355;
            --light-bg: #f5f2eb;
            --dark-text: #222222;
            --light-text: #f8f9fa;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--light-bg);
            background-image: linear-gradient(to bottom, rgba(245, 242, 235, 0.9), rgba(245, 242, 235, 0.9)), url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="%230a1f3a" opacity="0.03"/>');
            background-size: 120px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--light-text);
            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 a {
            color: var(--primary-gold);
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #1a5fb4;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .breadcrumb a {
            color: #ccc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 209, 0, 0.2);
            color: var(--primary-gold);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--light-text);
            text-decoration: none;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 209, 0, 0.1);
            color: var(--primary-gold);
            padding-left: 1.5rem;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h2, h3, h4 {
            color: var(--primary-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h2 {
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: rgba(26, 95, 180, 0.08);
            border-left: 4px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .data-table th {
            background-color: var(--primary-dark);
            color: white;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: rgba(26, 95, 180, 0.05);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--secondary-brown);
            text-align: center;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-gold);
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: 0;
            left: 10px;
        }
        .quote::after {
            bottom: -20px;
            right: 10px;
        }
        .image-with-caption {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-with-caption img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 3px solid white;
        }
        .caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--primary-gold);
        }
        .rating-widget button {
            background-color: var(--primary-dark);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            font-weight: 600;
        }
        .rating-widget button:hover {
            background-color: var(--primary-blue);
        }
        .related-links ul {
            list-style-type: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }
        .comments-section {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--primary-dark);
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
        }
        .comment-form button {
            align-self: flex-start;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1rem;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-avatar {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #6c757d;
        }
        .comment-content {
            flex-grow: 1;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.3rem;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 0.5rem;
        }
        .footer-links-section {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary-gold);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ccc;
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary-gold);
        }
        .site-footer {
            background-color: #111;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        .text-bold {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .text-highlight {
            background-color: rgba(255, 209, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            .article-content, .sidebar-widget, .comments-section {
                padding: 1.5rem;
            }
            .hero-image {
                height: 250px;
            }
        }
