
        :root {
            --primary: #dd6c03;
            --secondary: #06507e;
            --accent: #dd6c03;
            --light-bg: #f5f7fa;
            --dark-bg: #333;
            --text-color: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        #about{
            border: 1px solid var(--primary);
        }

        header {
            position: relative;
            background: linear-gradient(rgba(1, 87, 168, 0.5)), url('background.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        header h1 {
            font-size: clamp(3rem, 5vw, 3rem);
            margin: 0;
            line-height: 1.1;
        }

        header p {
            margin-top: 10px;
            font-size: 1.2rem;
        }

        nav {
            background-color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 40px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        nav img.logo {
            width: 150px;
            height: auto;
            margin-left: 110px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        nav img.logo:hover {
            transform: scale(1.1);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            flex: 1;
            justify-content: center;
        }

        nav a {
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        nav a:hover {
            color: var(--accent);
            font-weight: 700;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 25px;
            height: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 101;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
    
        section {
            margin-top: 10px;
            padding: 15px 20px 80px 20px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: 0;
            background-color: white;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
            scroll-margin-top: 130px;
            text-align: left;
            margin-right: 30px;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        section:nth-child(even) {
            background-color: var(--light-bg);
        }

        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        footer {
            background-color: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.95rem;
        }

        #information {
            margin-left: 30px;
            margin-right: auto;
            text-align: left;
            max-width: 800px;
            color: white;
            background: 
                linear-gradient(to bottom, rgba(1, 68, 168, 0.3)),
                url('grid4.jpg') center/cover no-repeat;
        }

        #information h2 {
            color: white;
        }

        .main-layout {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .left-column {
            flex: 1;
            height: 544px;
        }
        .left-column > section {
            height: 122%;
        }

        #about-us-img {
            width: 750px;
            height: auto;
        }

        section a {
            color: var(--accent);
            text-decoration: underline;
            font-weight: 600;
        }

        section a:hover {
            opacity: 0.8;
        }

                .left-column {
            flex: 1;
        }

        .right-column {
            flex: 1.3;
        }


                .language-toggle1 {
            margin-left: 20px;
            display: none;
        }

        .language-toggle {
            margin-left: 20px;
        }

        .language-toggle button, .language-toggle1 button {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 6px 10px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .language-toggle button:hover, .language-toggle1 button:hover {
            background-color: white;
            color: var(--secondary);
        }


        .nav-item-dropdown {
            position: relative;
            font-weight: 600;
        }

        .nav-item-dropdown .dropdown li::before {
            content: none;
        }

        .nav-item-dropdown .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--light-bg);
            border: 1px solid var(--primary);
            border-radius: 8px;
            list-style: none;
            padding: 5px 0;
            margin: 0;
            min-width: 150px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-item-dropdown .dropdown li {
            border-bottom: 1px solid rgba(0,0,0,0.05);
             padding-left: 0;
        }

        .nav-item-dropdown .dropdown li:last-child {
            border-bottom: none;
        }

        .nav-item-dropdown .dropdown li a {
            display: block;
            width: 100%;
            padding: 10px 20px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .nav-item-dropdown .dropdown li a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateX(3px);
        }

        .nav-item-dropdown:hover .dropdown {
            display: block;
        }

        .nav-item-dropdown a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-item-dropdown .arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-item-dropdown:hover .arrow {
            transform: rotate(180deg);
        }


        @media(max-width: 1200px) {
        nav {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px 20px;
                position: sticky;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 60px;
                right: 0;
                background-color: var(--secondary);
                flex-direction: column;
                width: 200px;
                display: none;
                text-align: center;
                border-radius: 8px;
                padding: 10px 0;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
                color: white;
            }

                        .language-toggle1 {
            margin-left: 20px;
            display: block;
            }
            
                        
            .language-toggle {
            margin-left: 20px;
            display: none;
            }

            .nav-item-dropdown a {
            display: block;
            align-items: center;
            gap: 5px;
        }

        .nav-item-dropdown .dropdown {
                position: relative;
                border: none;
                box-shadow: none;
                background-color: var(--secondary);
            }
        .nav-item-dropdown .dropdown li a {
                color: white;
            }
        .nav-item-dropdown .dropdown li a:hover {
                background-color: var(--accent);
                color: white;
                transform: none;
            }
            
        }
        @media (max-width: 1050px) {
            .main-layout {
                flex-direction: column;
            }

            #information {
                margin-left: 0;
                max-width: 100%;
                height: auto;
                min-height: 300px;
            }

            .left-column {
                height: auto;
            }

            .left-column > section {
                height: auto; 
            }

            .right-column {
                margin-right: 0;
            }

            section {
                margin-right: 0px;
            }

            
        }

        @media (max-width: 600px) {
            form input, form textarea {
                width: 98%;
            }

            #about-us-img {
                width: 450px;
                height: auto;
            }
            section {
                margin-right: 0px;
            }
            nav {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px 20px;
                position: sticky;
            }


            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 60px;
                right: 0;
                background-color: var(--secondary);
                flex-direction: column;
                width: 200px;
                display: none;
                text-align: center;
                border-radius: 8px;
                padding: 10px 0;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
                color: white;
            }
            
            .main-layout {
                flex-direction: column;
                align-items: stretch;
            }


            .left-column > section {
                min-height: 300px;
            }

            section {
                margin: 20px 0;
            }

            #information {
                margin-left: 0;
                margin-right: 0;
            }
        }
