        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
            background-color: #fff;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .container {
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            padding-bottom: 30px;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Header Section */
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .logo img {
            width: 115px;
            height: auto;
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 24px;
            color: #333;
            font-weight: bold;
        }
        
.search-lang {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-right: 25px;
}

.language-selector {
    margin-bottom: 5px;
}

.language-selector a {
    margin-left: 5px;
}

.search-bar {
    display: flex;
    height: 46px;
    width: 351px;
}

        
        .search-bar input {
            width: 100%;
            padding: 0 10px;
            border: 1px solid #ccc;
            border-right: none;
            outline: none;
            background-color: #f5f5f5;
        }
        
        .search-bar button {
            background-color: #f44336;
            color: white;
            border: none;
            padding: 0 12px;
            cursor: pointer;
            font-size: 14px;
            min-width: 71px;
            white-space: nowrap;
            font-weight: bold;
        }
        
        /* Navigation and Banner Container - For the overlap effect */
        .nav-banner-container {
            position: relative;
            margin-bottom: 20px;
        }
        
        /* Navigation Menu - Positioned to overlap the banner */
        .nav {
            background-color: #0078BE;
            border-radius: 5px;
            margin-left: 25px;
            position: relative;
            width: calc(100% - 50px);
            max-width: 1303px;
            z-index: 10; /* Ensure nav is above banner */
            height: 48px;
        }
        
        .nav ul {
            list-style-type: none;
            display: flex;
            width: 100%;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        .nav li {
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .nav a {
            color: white;
            text-decoration: none;
            padding: 0 30px;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .nav li.active {
            background-color: #f44336;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }
        
            /* Banner Section - Adjusted for the nav overlap */
         /* Banner Section - Image Slider */
  .banner {
    position: relative;
    height: auto;
    min-height: 364px;
    overflow: hidden;
    width: 100%;
    margin-top: -24px; /* Move banner up to create nav overlap */
    padding-top: 48px; /* Add padding to banner top to compensate for nav overlap */
}

.banner-slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%; /* 5 slides */
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    position: relative;
    width: 20%; /* Each slide takes 1/5 of the container */
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-text {
    position: absolute;
    top: 90px; /* Adjusted to account for the nav overlap */
    left: 50px;
    color: #005a8e;
    z-index: 2;
}

.banner-text h2 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #0078BE;
    
    padding: 5px 10px;
    display: inline-block;
}

.banner-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
    width: 320px;
 
    padding: 5px 10px;
}

.banner-text ul {
    list-style-type: none;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    max-width: 400px;
    border-radius: 4px;
}
.banner-text li {
    padding: 3px 0;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.banner-text li:before {
    content: "•";
    color: #f44336;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.banner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color:#187ABA;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .banner-text {
        top: 80px;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .banner-text {
        top: 70px;
        left: 20px;
    }
    
    .banner-text h2 {
        font-size: 28px;
    }
    
    .banner-text p {
        font-size: 16px;
        width: 250px;
    }
    
    .banner-text ul {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .banner {
        min-height: 300px;
    }
    
    .banner-text {
        top: 60px;
        left: 15px;
    }
    
    .banner-text h2 {
        font-size: 22px;
    }
    
    .banner-text p {
        font-size: 14px;
        width: 200px;
    }
    
    .banner-text ul {
        padding: 8px;
        max-width: 220px;
    }
    
    .banner-text li {
        font-size: 12px;
    }
}
        
        .dot.active {
            background-color: #0078BE;
        }
        
        /* Main Content Structure */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            min-height: 400px;
        }
        
        /* Sidebar */
        .sidebar {
            width: 100%;
            max-width: 250px;
            min-height: 400px;
        }
        
        .section-box {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }
        
        .section-title {
            background-color: #f0f0f0;
            padding: 8px 15px;
            font-weight: bold;
            color: #333;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .small-search {
            padding: 10px;
        }
        
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .search-container input {
            width: 100%;
            padding: 8px 30px 8px 10px;
            border: 1px solid #ccc;
            font-size: 12px;
        }
        
        .search-container button {
            position: absolute;
            right: 5px;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
            margin: 0;
        }
        
        .category-menu {
            list-style-type: none;
            margin-bottom: 15px;
        }
        
        .category-menu li {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .category-menu li:last-child {
            border-bottom: none;
        }
        
        .category-menu a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }
        
        .category-menu a:hover, .category-menu a.active {
            background-color: #f5f5f5;
            color: #0078BE;
            font-weight: bold;
        }
        
        .has-submenu::after {
            content: "›";
            float: right;
            font-size: 18px;
            color: #888;
        }
        
        /* Content Area */
        .content {
            flex: 1;
            min-width: 0;
        }
        
        /* News Content */
        .news-content {
            background-color: #fff;
            padding: 20px;
            border: 1px solid #e0e0e0;
        }
        
        .news-title {
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .news-date {
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-bottom: 20px;
        }
        
        .news-text {
            line-height: 1.6;
            color: #333;
            text-align: justify;
        }
        
        .news-text p {
            margin-bottom: 15px;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 10px;
            }
            
            .nav {
                margin-left: 10px;
                width: calc(100% - 20px);
            }
            
            .banner-text {
                left: 30px;
            }
        }
        
        @media (max-width: 991px) {
            .nav {
                margin-left: 0;
                width: 100%;
                border-radius: 0;
            }
            
            .menu-toggle {
                display: block;
                position: absolute;
                right: 10px;
                top: 10px;
            }
            
            .nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .nav ul.show {
                display: flex;
            }
            
            .nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .banner {
                margin-top: -20px;
                padding-top: 40px;
            }
            
            .banner-text {
                top: 80px;
            }
            
            .main-content {
                flex-direction: column;
                align-items: center;
            }
            
            .sidebar {
                max-width: 100%;
                width: 100%;
                margin-bottom: 20px;
            }
            
            .content {
                width: 100%;
            }
            
            .section-box {
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: center;
            }
            
            .logo {
                margin-bottom: 15px;
                flex-direction: column;
                text-align: center;
            }
            
            .logo img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .logo h1 {
                font-size: 20px;
                text-align: center;
            }
            
            .search-lang {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .search-bar {
                max-width: 100%;
            }
            
            .banner-text {
                left: 20px;
                top: 70px;
            }
            
            .banner-text h2 {
                font-size: 24px;
            }
            
            .banner-text p {
                font-size: 16px;
                max-width: 250px;
            }
            
            .banner-text ul {
                max-width: 250px;
            }
            
            .news-title {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .banner-text {
                left: 15px;
                top: 60px;
            }
            
            .banner-text h2 {
                font-size: 20px;
            }
            
            .banner-text p {
                font-size: 14px;
                max-width: 200px;
            }
            
            .banner-text ul {
                padding: 5px;
                font-size: 12px;
                display: none; /* Hide on very small screens for better UI */
            }
            
            .news-title {
                font-size: 16px;
            }
            
            .news-content {
                padding: 15px 10px;
            }
            
            .search-lang {
                flex-direction: column;
            }
            
            .language-selector {
                margin-bottom: 10px;
            }
        }
