        body {
            margin: 0;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }

        /* 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;
        }

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

            .sidenav {
                width: 100%;
            }
        }

        .content {
            max-width: 800px;
            /* Limit width for better readability */
            margin: 0;
            /* Center content horizontally */
            padding: 20px;
            /* Add general padding */
            text-align: center;
            /* Center-align text */
            line-height: 1.7;
        }

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

        .content-image {
            width: 100%;
            /* Responsive width */
            max-height: 500px;
            /* Limit height for consistent visuals */
            object-fit: cover;
            /* Maintain aspect ratio */
            border-radius: 8px;
            /* Add slight rounded corners */
            margin-bottom: 20px;
            /* Space below the image */
        }

        /* Responsive Design for Mobile Screens */
        @media (max-width: 768px) {
            .content {
                padding: 15px;
                /* Reduce padding for smaller screens */
            }

            .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;
        }

        .container-fluidI {
            width: 100%;
            margin: 0;
            padding: 0;
            margin-bottom: 3vw;
        }

        .image-container-fluidI {
            position: relative;
            width: 100%;
        }

        .image-container-fluidI img {
            display: block;
            /* Removes inline padding/margins from the browser */
            width: 100%;
            height: auto;
            /* Maintains aspect ratio */
            object-fit: cover;
            /* Ensures proper coverage without distortion */
        }

        .text-overlay {
            position: absolute;
            bottom: 56.5%;
            left: 75%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            text-align: center;
            padding: 1rem;
            width: 80%;
            max-width: 380px;
            font-size: 1rem;
            z-index: 2;
        }

        .text-overlay h6 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .text-overlay p {
            margin: 0.5rem 0;
        }

        @media (max-width: 768px) {
            .image-container {
                position: relative;
            }

            .text-overlay {
                position: static;
                /* Removes absolute positioning */
                transform: none;
                /* Removes centering transform */
                margin: 1rem auto 0;
                /* Adds spacing around the text */
                width: 90%;
                /* Adjusts the width for smaller screens */
                background-color: rgba(0, 0, 0, 0.9);
                /* Enhances readability on smaller devices */
                padding: 1.5rem;
            }

            .text-overlay h6 {
                font-size: 1rem;
                /* Adjust heading size for smaller screens */
            }

            .text-overlay p {
                font-size: 0.9rem;
                /* Adjust paragraph text size for smaller screens */
            }
        }

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

        .card ul li {
            padding: 3px;
        }

        .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;
        }

        .containerdiscover {
            padding-top: 3vh;
            padding-bottom: 3vh;
        }

        .containerdiscover ul li {
            text-align: left;
            padding: 3px;

        }

        /* Global styles */
        #discoverlearning {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .flexsoyinka {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            /* Spacing between cards */
            margin: 20px 0;
        }

        .cardsoyinka {
            flex: 1 1 350px;
            /* Flexible width with a minimum of 350px */
            max-width: 350px;
            background-color: #FFB6C1;
            padding: 15px;
            text-align: left;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cardsoyinka ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

        .cardsoyinka li {
            padding: 2px 0;
        }

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

            .cardsoyinka {
                max-width: 90%;
                /* Cards span most of the screen width */
            }
        }

        /* entry test*/
        .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;
        }


        /* Tutors Section */
        .tutors {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f1f8ff;
            margin-top: 3vw;
        }

        .tutors h1 {
            font-size: 2rem;
            margin-top: 0;
        }

        .tutors p {
            font-size: 1rem;
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.6;
        }

        .image-containertutors {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
        }

        .image-containertutors img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .tutor-name {
            font-size: 1.2rem;
            color: blue;
            margin-top: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .tutors {
                padding: 15px;
            }

            .tutors h1 {
                font-size: 1.8rem;
            }

            .tutors p {
                font-size: 0.9rem;
            }

            .image-containertutors img {
                width: 120px;
                height: 120px;
            }

            .tutor-name {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .tutors p {
                text-align: left;
            }

            .image-containertutors img {
                width: 100px;
                height: 100px;
            }

            .tutor-name {
                font-size: 0.9rem;
            }
        }