/* Media Query for Screen Sizes less than or equal to 1470px */
@media (max-width: 1470px) {
    .banner {
        width: 60%;
        margin: 0 auto;
    }


    .content {
        margin: 0 20%;
    }

    footer {
        margin: 0 20%;
    }

    .navbar {
        margin: 0 20%;
    }

    .nav-links {
        display: none;
        margin-top: 1.5rem;
        font-size: 14px;
        gap: 0.5rem;
        justify-content: space-between;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        
        width: 10rem
    }

    .hamburger-menu {
        margin-top: 0.5rem;
        display: flex;
        gap: 3px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links {
        padding: 0.7rem 0;
        display: none;
        flex-direction: column;
    }

    /* Set font size directly */
    .content {
        font-size: 12px;
    }

    .intro p {
        font-size: 12px;
    }

    h1 {
        font-size: 20px;
    }

    footer p {
        font-size: 10px;
    }

    .footer-links {
        font-size: 8px;
        margin-left: 3px;
        margin-right: 3px;


    }
}

/* Media Query for Screen Sizes less than or equal to 925px */
@media (max-width: 940px) {

    .nav-links {
        margin-top: 1.5rem;
        font-size: 14px;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .hamburger-menu {
        margin-top: 0.5rem; 
    }

    .banner {
        width: 70%;
        margin: 0 auto;
    }

    .content {
        margin: 0 15%;
    }

    footer {
        margin: 0 15%;
    }

    .navbar {
        margin: 0 15%;
    }
    
    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-left: 2px;
        margin-right: 2px;
        display: inline-block;
        font-size: 8px;
    }

    footer p {
        margin-top: 10px;
        font-size: 6px;
    }
}

/* Media Query for Screen Sizes less than or equal to 650px */
@media (max-width: 650px) {

    .hamburger-menu {
        margin-top: 0.5rem;
        
    }

    .banner {
        width: 100%;
        margin: 0 auto;
    }

    .content {
        margin: 0 0%;
    }

    footer {
        margin: 0%;
    }

    .navbar {
        margin: 0%;
    }

    .nav-links {
        margin-top: 1.5rem;
        font-size: 14px;
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .row_logos {
        margin: 2rem 15%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem; 
    }
    
    .row_logos img {
        max-width: 100%;
        height: auto;
    }
    
}

