:root {
            --primary: #013369; 
            --secondary: #D50A0A; 
            --accent: #FFB81C; 
            --light: #F5F5F5;
            --dark: #1A1A1A;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --max-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.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #002244 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(to right, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .search-box {
            margin-left: 2rem;
            display: flex;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            width: 250px;
        }
        .search-box button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #b30909;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        .meta i {
            margin-right: 8px;
            color: var(--secondary);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        .article-body h3 {
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article-body em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            box-shadow: var(--shadow);
        }
        .figure {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .figure img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid #ddd;
        }
        .figcaption {
            margin-top: 10px;
            font-style: italic;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .internal-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px dotted var(--accent);
        }
        .internal-link:hover {
            color: var(--secondary);
            border-bottom-style: solid;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background-color: var(--light);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .star {
            padding: 0 3px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            resize: vertical;
            font-family: inherit;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #002244;
        }
        .footer-links {
            background-color: #f8f9fa;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0 15px 15px 0;
        }
        .web-link a {
            background-color: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: var(--shadow);
            border: 1px solid #e0e0e0;
            font-size: 0.95rem;
        }
        .web-link a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 3rem 0 2rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links-section h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links-section ul {
            list-style: none;
        }
        .footer-links-section li {
            margin-bottom: 10px;
        }
        .footer-links-section a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .nav-links, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-menu {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            .mobile-menu.active {
                display: block;
            }
            .mobile-menu .nav-links {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            .mobile-menu .search-box {
                display: flex;
                margin: 1rem 0 0;
            }
            .mobile-menu .search-box input {
                width: 100%;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 2rem;
            }
            .meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
        }
