        body {
            margin: 0;
        }

        /* General Styling */
        .containerBig {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 20px;
            margin-right: 5vw;
        }

        .sidenav {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            max-width: 250px;
            background: #f4f4f4;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-left: 25px;
            margin-top: 25px;
            height: 450px;
        }

        .sidenav a,
        .dropdown-btn {
            padding: 10px;
            text-decoration: none;
            font-size: 16px;
            color: #333;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            outline: none;
            width: 100%;
        }

        .sidenav a:hover,
        .dropdown-btn:hover {
            background-color: #ddd;
            color: #000;
        }

        .sidenav a.active,
        .dropdown-btn.active {
            background-color: #555;
            color: white;
        }

        .dropdown-link {
            color: inherit;
            /* Matches button text color */
            text-decoration: none;
            /* Removes underline */
            padding: 0;
            /* Prevents padding overlap */
            display: inline-block;
            /* Allows proper alignment */
        }

        .dropdown-link:hover {
            text-decoration: underline;
            /* Adds hover effect for clarity */
        }

        .dropdown-container {
            display: none;
            flex-direction: column;
            gap: 8px;
            padding-left: 20px;
        }

        .dropdown-btn.active+.dropdown-container {
            display: flex;
        }

        .containerBig {
            padding: 20px 20px;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .containerBig {
                grid-template-columns: 1fr;
            }

            .sidenav {
                width: 100%;
            }
        }


        /* Default styling for larger screens */
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            text-align: left;
            /* Text is left-aligned by default */
            line-height: 1.7;
        }

        .content h4 {
            font-size: 1em;
        }

        /* Responsive centering for smaller screens */
        @media (max-width: 768px) {
            .content {
                text-align: center;
                /* Center-align text for small screens */
                padding: 15px;
            }
        }

        /* Responsive Design for Mobile Screens */
        @media (max-width: 768px) {
            .content-image {
                max-height: 300px;
                /* Smaller image for better fit */
            }
        }

        @media (max-width: 480px) {
            .content {
                padding: 10px;
                /* Further reduce padding for mobile phones */
            }

            .content h1 {
                font-size: 1.8em;
                /* Slightly smaller heading size */
            }
        }

        /************/
        .pagetitle {
            font-family: 'Trebuchet MS', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            /* Bigger font size */
            color: rgb(51, 51, 51);
            padding-left: 5vw;
            margin-top: 10px;
            margin-bottom: 0;
            text-align: center;
        }

        /*Banner*/
        .banner {
            width: 100%;
            padding: 1vw;
            background-color: #046fad;
            color: white;
            height: auto;
            text-align: center;
            font-size: 1.3em;
            margin-bottom: 3vw;
        }

        #nearnative {
            font-size: 30px;
        }

        #nearnative {
            animation-duration: 3s;
            animation-name: slidein;
            animation-iteration-count: 1;
        }

        @keyframes slidein {
            from {
                margin-left: 100%;
                width: 300%;
            }

            to {
                margin-left: 0%;
                width: 100%;
            }
        }

        .card {
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            width: 100%;
            border-radius: 12px;
            margin-bottom: 2vw;
        }

        .card:hover {
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        }

        .container-fluid {
            padding: 20px 20px;
            height: auto;
        }

        .englishtransform {
            background-color: #faf6f6;
        }

        /*******/
        /* General Styling */
        .discover {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .text h6 {
            margin-bottom: 10px;
        }

        .image {
            width: 125px;
            height: 125px;
            border-radius: 8px;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .discover {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .image {
                margin-bottom: 10px;
            }
        }

        /* General Journey Styling */
        .journey {
            background-color: white;
            width: 100%;
            display: flex;
            column-gap: 20px;
            padding: 5px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            border-radius: 12px;
        }

        .journey:hover {
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        }

        .journey1 {
            flex: 1;
            padding: 10px;
        }

        .journey1 h4 {
            text-align: center;
            margin-bottom: 15px;
        }


        .entrytest {
            display: flex;
            gap: 0.5rem;
        }

        .entrytest a {
            flex: 1;
            background-color: #333;
            color: #fff;
            border: 1px solid;
            padding: 0.5rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.5s ease-out;
        }

        .entrytest a:hover,
        .entrytest a:focus {
            background-color: #fff;
            color: #333;
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .entrytest {
                flex-direction: column;
                /* Stacks items vertically */
            }
        }

        #idjourney1 {
            margin-top: 3vw;
        }