 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        /* header */
        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 48px;
            width: 100%;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #003366;
        }

        nav a.active {
            color: #003366;
        }
        .menu-item {
    position: relative;
    display: inline-block;
    }

    .selectZone {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    }

    /* underline effect */
    .selectZone::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f4b400;
    transition: width 0.3s ease;
    }

    .menu-item:hover .selectZone::after {
    width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    min-width: 240px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    }

    .dropdown li {
    list-style: none;
    }

    .dropdown a {
    display: block;
    padding: 12px 20px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    }

    .dropdown a:hover {
    background: #2a2a2a;
    color: #fff;
    }



    .menu {
    list-style: none;
    }

    .menu-item:hover .dropdown {
    display: block;
    }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FDB714;
        }
        /* Top Bar */
        .topbar-news {
            background: #003366;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
        }

        .topbar-news-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .social-link-news {
            width: 32px;
            height: 32px;
            background: #FDB714;
            color: #003366;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            font-size: 14px;
            transition: transform 0.3s;
        }

         .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }


        .social-link-news:hover {
            transform: translateY(-2px);
        }

        /* Header */
        .news-header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 48px;
            width: 100%;
            z-index: 1000;
        }

        .news-header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .news-logo {
            display: flex;
            align-items: center;
        }

        .news-nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .news-nav a {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .news-nav a:hover {
            color: #003366;
        }

        .news-nav a.active-news {
            color: #003366;
        }

        .news-nav a.active-news::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FDB714;
        }

        .lang-select {
            display: flex;
            gap: 10px;
        }

        .lang-select img {
            width: 24px;
            height: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .lang-select img:hover {
            opacity: 1;
        }
        .lang-switcher {
            display: flex;
            gap: 10px;
        }

        .lang-switcher img {
            width: 24px;
            height: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .lang-switcher img:hover {
            opacity: 1;
        }


        /* Hero Banner */
        .news-hero {
            margin-top: 128px;
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            padding: 100px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .news-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover;
            opacity: 0.1;
        }

        .news-hero h1 {
            font-size: 64px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            letter-spacing: 2px;
        }

        /* Main Content */
        .news-main {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .news-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
        }

        /* Blog Posts */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .blog-post {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .post-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .blog-post:hover .post-image img {
            transform: scale(1.05);
        }

        .post-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .post-date {
            font-size: 18px;
            color: #999;
            margin-bottom: 10px;
        }

        .post-title {
            font-size: 28px;
            color: #003366;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .post-excerpt {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .read-more-btn {
            display: inline-block;
            padding: 12px 35px;
            background: #FDB714;
            color: #003366;
            text-decoration: none;
            font-weight: 600;
            border-radius: 5px;
            align-self: flex-start;
            transition: transform 0.3s;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
        }

        /* Sidebar */
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .sidebar-widget {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .widget-title {
            font-size: 22px;
            color: #003366;
            margin-bottom: 25px;
            font-weight: 700;
            padding-bottom: 15px;
            border-bottom: 3px solid #FDB714;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }

        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #003366;
            cursor: pointer;
            font-size: 18px;
        }

        .recent-posts-list {
            list-style: none;
        }

        .recent-posts-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .recent-posts-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-posts-list a {
            color: #003366;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .recent-posts-list a:hover {
            color: #FDB714;
        }

        .archives-list,
        .categories-list,
        .meta-list {
            list-style: none;
        }

        .archives-list li,
        .categories-list li,
        .meta-list li {
            margin-bottom: 12px;
        }

        .archives-list a,
        .categories-list a,
        .meta-list a {
            color: #666;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .archives-list a:hover,
        .categories-list a:hover,
        .meta-list a:hover {
            color: #003366;
        }

        /* Footer */
        .news-footer {
            background: #2d2d2d;
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-grid-news {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer-info p {
            font-size: 15px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 25px;
        }

        .footer-social-icons {
            display: flex;
            gap: 10px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .footer-social-link:hover {
            background: #FDB714;
        }

        .footer-links-news h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .footer-links-news ul {
            list-style: none;
        }

        .footer-links-news ul li {
            margin-bottom: 12px;
        }

        .footer-links-news ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .footer-links-news ul li a:hover {
            color: #FDB714;
        }

        .footer-contact-news h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .footer-contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-contact-form input,
        .footer-contact-form select,
        .footer-contact-form textarea {
            padding: 12px 15px;
            background: #3d3d3d;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 14px;
        }

        .footer-contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .footer-contact-form button {
            padding: 12px 30px;
            background: #FDB714;
            color: #003366;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .footer-contact-form button:hover {
            transform: translateY(-2px);
        }

        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }

        /* Scroll to Top */
        .scroll-up-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 100;
        }

        .scroll-up-btn.visible-btn {
            opacity: 1;
        }

        .scroll-up-btn:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 1024px) {
            .news-container {
                grid-template-columns: 1fr;
            }

            .blog-post {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .news-header-content {
                flex-direction: column;
                gap: 20px;
            }

            .news-nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-grid-news {
                grid-template-columns: 1fr;
            }
        }