@charset "utf-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --hb-primary: #1e3c72;
            --hb-secondary: #2a5298;
            --hb-accent: #ffc107;
            --hb-text: #333;
            --hb-light: #f8f9fa;
            --hb-border: #e1e8ed;
            --hb-shadow: 0 10px 30px rgba(0,0,0,0.1);
            --hb-transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--hb-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Top Bar */
        .hb-top-bar {
            background: var(--hb-primary);
            color: white;
            padding: 8px 0;
            font-size: 13px;
        }
        
        .hb-top-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .hb-contact-info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hb-contact-info a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .hb-contact-info a:hover {
            color: var(--hb-accent);
        }
        
        .hb-social-links {
            display: flex;
            gap: 15px;
        }
        
        .hb-social-links a {
            color: white;
            font-size: 16px;
            transition: var(--hb-transition);
        }
        
        .hb-social-links a:hover {
            color: var(--hb-accent);
            transform: translateY(-2px);
        }
        
        /* Main Navigation */
        .hb-main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .hb-nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .hb-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--hb-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .hb-nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            position: relative;
        }
        
        .hb-nav-menu li {
            position: relative;
        }
        
        .hb-nav-menu a {
            color: var(--hb-text);
            text-decoration: none;
            font-weight: 500;
            transition: var(--hb-transition);
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .hb-nav-menu a:hover,
        .hb-nav-menu a.hb-active {
            color: var(--hb-secondary);
        }
        
        /* Dropdown Menu */
        .hb-dropdown {
            position: relative;
        }
        
        .hb-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 5px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 100;
        }
        
        .hb-dropdown:hover .hb-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .hb-dropdown-item {
            position: relative;
        }
        
        .hb-dropdown-item > a {
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--hb-text);
            font-size: 14px;
        }
        
        .hb-dropdown-item > a:hover {
            background: var(--hb-light);
            color: var(--hb-primary);
        }
        
        .hb-submenu {
            position: absolute;
            top: 0;
            left: 100%;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 5px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s;
        }
        
        .hb-dropdown-item:hover .hb-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .hb-submenu a {
            padding: 8px 20px;
            display: block;
            color: var(--hb-text);
            font-size: 13px;
            text-decoration: none;
        }
        
        .hb-submenu a:hover {
            background: var(--hb-light);
            color: var(--hb-primary);
        }
        
        .hb-nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .hb-language-selector select {
            padding: 8px 30px 8px 15px;
            border: 1px solid var(--hb-border);
            border-radius: 6px;
            background: white;
            font-size: 14px;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
            background-repeat: no-repeat;
            background-position: right 10px center;
        }
        
        .hb-mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--hb-primary);
        }
        
        /* Page Banner */
        .hb-page-banner {
            background: linear-gradient(135deg, var(--hb-primary), var(--hb-secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hb-banner-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hb-banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: hbFadeInUp 1s ease;
        }
        
        .hb-banner-content p {
            font-size: 18px;
            opacity: 0.9;
            animation: hbFadeInUp 1s ease 0.2s both;
        }
        
        .hb-banner-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: white;
            clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
        }
        
        /* News Details Specific Styles */
        .news-detail-section {
            padding: 60px 0;
            background-color: #f9f9f9;
            min-height: 500px;
        }
        
        .news-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 30px;
            padding: 15px 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #007bff;
        }
        
        .breadcrumb i {
            margin: 0 8px;
            color: #999;
            font-size: 12px;
        }
        
        .breadcrumb span {
            color: #333;
            font-weight: 500;
        }
        
        /* Main Content Area */
        .news-detail-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        
        /* Left News Content */
        .news-content-wrapper {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .news-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .news-header h1 {
            font-size: 28px;
            color: #333;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #999;
            font-size: 14px;
        }
        
        .news-meta i {
            margin-right: 5px;
            color: #007bff;
        }
        
        .news-body {
            padding: 30px;
            line-height: 1.8;
            color: #444;
            font-size: 16px;
        }
        
        .news-body img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin: 20px 0;
        }
        
        .news-body p {
            margin-bottom: 20px;
        }
        
        .news-body h2, .news-body h3 {
            margin: 25px 0 15px;
            color: #333;
        }
        
        .news-body ul, .news-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .news-body li {
            margin-bottom: 5px;
        }
        
        .news-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .news-body th, .news-body td {
            border: 1px solid #ddd;
            padding: 10px;
        }
        
        .news-body th {
            background-color: #f5f5f5;
        }
        
        /* News Navigation */
        .news-navigation {
            display: flex;
            justify-content: space-between;
            padding: 20px 30px 30px;
            border-top: 1px solid #eee;
        }
        
        .nav-prev, .nav-next {
            flex: 1;
        }
        
        .nav-prev a, .nav-next a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .nav-prev a:hover, .nav-next a:hover {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
            transform: translateX(-5px);
        }
        
        .nav-next a:hover {
            transform: translateX(5px);
        }
        
        .nav-prev i {
            margin-right: 5px;
        }
        
        .nav-next i {
            margin-left: 5px;
        }
        
        .nav-disabled {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f8f9fa;
            color: #999;
            border-radius: 5px;
            border: 1px solid #eee;
            cursor: not-allowed;
        }
        
        /* Right Sidebar */
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-widget {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .widget-title {
            padding: 15px 20px;
            margin: 0;
            background-color: #f8f9fa;
            font-size: 18px;
            color: #333;
            border-bottom: 2px solid #007bff;
        }
        
        .widget-title i {
            margin-right: 8px;
            color: #007bff;
        }
        
        .widget-content {
            padding: 20px;
        }
        
        /* Related News List */
        .related-news-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .related-news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .related-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .related-news-title {
            font-size: 15px;
            margin: 0 0 8px 0;
        }
        
        .related-news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.5;
        }
        
        .related-news-title a:hover {
            color: #007bff;
        }
        
        .related-news-date {
            font-size: 13px;
            color: #999;
        }
        
        .related-news-date i {
            margin-right: 5px;
            font-size: 12px;
            color: #007bff;
        }
        
        /* Back Button */
        .back-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #6c757d;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .back-btn:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .back-btn i {
            margin-right: 5px;
        }
        
        /* Footer */
        .hb-footer {
            background: var(--hb-primary);
            color: white;
            padding: 60px 0 20px;
            margin-top: 50px;
        }
        
        .hb-footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .hb-footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .hb-footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--hb-accent);
        }
        
        .hb-footer-col p {
            margin-bottom: 10px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .hb-footer-col ul {
            list-style: none;
        }
        
        .hb-footer-col ul li {
            margin-bottom: 10px;
        }
        
        .hb-footer-col ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: var(--hb-transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        

        .hb-footer-col ul li a:hover {
            opacity: 1;
            transform: translateX(5px);
            color: var(--hb-accent);
        }
        
        .hb-footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 20px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
            font-size: 14px;
        }
        
        /* RTL Support */
        [dir="rtl"] .hb-dropdown-menu {
            left: auto;
            right: 0;
        }
        
        [dir="rtl"] .hb-submenu {
            left: auto;
            right: 100%;
        }
        
        [dir="rtl"] .hb-footer-col h3:after {
            left: auto;
            right: 0;
        }
        
        [dir="rtl"] .hb-footer-col ul li a:hover {
            transform: translateX(-5px);
        }
        
        /* Animations */
        @keyframes hbFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hb-banner-content h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 992px) {
            .news-detail-main {
                grid-template-columns: 1fr;
            }
            
            .news-header h1 {
                font-size: 24px;
            }
            
            .news-body {
                font-size: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .hb-mobile-menu-btn {
                display: block;
            }
            
            .hb-nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                background: white;
                padding: 20px 0;
                margin-top: 15px;
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .hb-nav-menu.hb-active {
                display: flex;
            }
            
            .hb-nav-menu li {
                width: 100%;
                text-align: center;
            }
            
            .hb-nav-menu a {
                display: block;
                padding: 12px 20px;
            }
            
            .hb-nav-menu a:hover {
                background: var(--hb-light);
            }
            
            /* Mobile dropdown adjustments */
            .hb-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                display: none;
            }
            
            .hb-dropdown:hover .hb-dropdown-menu {
                display: block;
            }
            
            .hb-submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
            }
            
            .hb-dropdown-item:hover .hb-submenu {
                display: block;
            }
            
            .hb-banner-content h1 {
                font-size: 28px;
            }
            
            .hb-banner-content p {
                font-size: 16px;
            }
            
            .hb-top-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .hb-contact-info {
                justify-content: center;
            }
            
            /* News responsive */
            .news-detail-section {
                padding: 40px 0;
            }
            
            .news-header {
                padding: 20px;
            }
            
            .news-header h1 {
                font-size: 20px;
            }
            
            .news-body {
                padding: 20px;
            }
            
            .news-meta {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .news-navigation {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .nav-prev, .nav-next {
                width: 100%;
            }
            
            .nav-prev a, .nav-next a, .nav-disabled {
                width: 100%;
                text-align: center;
            }
            
            .breadcrumb {
                font-size: 13px;
                padding: 10px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .hb-banner-content h1 {
                font-size: 24px;
            }
            
            .hb-contact-info {
                flex-direction: column;
                gap: 5px;
            }
        }

