
@media (max-width: 576px) {
    .container {
        width: 100% !important;
        display: block;
    }

    .top-bar {
        display: none;
    }

    .language-selection {
        display: none;
    }

    .slider-container {
        position: relative;
        max-width: 100%;
        min-height: 0;
        max-height: 100%;
        overflow: hidden;
    }

    .main-nav {
        background-color: #f8f9fa;
        padding: 0;
    }

        .main-nav a {
            display: block;
            padding: 15px;
            color: #282572;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s, background-color 0.3s;
        }

        .main-nav ul {
            flex-direction: column;
        }

        .main-nav a.active {
            border-bottom: none;
            border-left: 4px solid #0d6efd;
        }

    .features {
        background-color: #F58220;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 5px;
        text-align: center;
    }

    .feature {
        color: #282572;
        width: 24%;
        text-align: center;
    }

        .feature h3 {
            font-weight: 800;
            font-size: 12px;
        }

        .feature img {
            width: 25px;
        }

    .person-card, .info-card {
        flex: 0 0 90%;
        max-width: 100%;
        padding: 20px;
    }

    .about-title {
        font-size: 18px;
    }

    .person-card h3, .info-card h3 {
        font-size: 22px;
    }

    .fb-section {
        display: none;
    }

    .news-img {
        display: none;
    }


    .footer {
        display: flex;
        flex-direction: column;
    }

    .footer-map {
        width: 100% !important;
    }

    .desktop-layout {
        display: none;
    }

    .mobile-layout {
        display: flex;
    }

    .desktop-dots {
        display: none;
    }

    .mobile-dots {
        display: flex;
        justify-content: center;
    }


    /* Ensure toggle buttons are visible and properly spaced */
    .navbar-toggler {
        display: block;
        margin: 0.25rem;
    }

    /* Make language selector appear properly */
    #languageSelector {
        position: absolute;
        top: 100%;
        right: 0;
        width: auto;
        background-color: white;
        z-index: 1000;
        padding: 0.5rem;
        border-radius: 0.25rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    /* Style for globe icon */
    .bi-globe:before {
        content: "\f3db"; /* Bootstrap icon code for globe */
        font-family: "Bootstrap Icons";
    }
}

