@media screen and (min-width: 768px) {
    footer {
        padding: 4rem 2rem 1.5rem;
    }

    .footer_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer_text {
        max-width: 300px;
    }

    .footer_text h1 {
        font-size: 2rem;
    }

    .footer_text p {
        font-size: 1rem;
    }

    .footer_pages_name h3,
    .footer_utility_pages h3,
    .footer_image_section h3 {
        font-size: 1.4rem;
    }

    .footer_link {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer_images {
        gap: 1rem;
    }

    .footer_bottom {
        font-size: 0.9rem;
        margin-top: 4rem;
    }

}

@media screen and (min-width: 1024px) {
    footer {
        padding: 5rem 3rem 2rem;
    }

    .footer_container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }

    .footer_text {
        max-width: 320px;
    }

    .footer_text h1 {
        font-size: 2.2rem;
    }

    .footer_text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer_pages_name,
    .footer_utility_pages,
    .footer_image_section {
        margin-top: 0;
    }

    .footer_pages_name h3,
    .footer_utility_pages h3,
    .footer_image_section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer_link {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer_images img {
        border-radius: 10px;
    }

    .footer_bottom {
        font-size: 0.9rem;
        margin-top: 5rem;
        padding-top: 1.5rem;
    }


}

@media (max-width:1000px) and (min-width: 768px) {

    .footer_pages_list,
    .utility_pages_list {
        list-style: none;
        display: grid;
        grid-template-columns: auto auto;
        width: 50%;
        padding: 0;
        gap: 10px;
        margin: 0;
    }

    .footer_link {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        color: #ccc;
        cursor: pointer;
        transition: color 0.3s ease;
        padding: 0px 10px 0px 0px;
    }


}

@media screen and (max-width: 480px) {
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer_container {
        gap: 2.5rem;
    }

    .footer_text h1 {
        font-size: 1.6rem;
    }

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

    .footer_pages_name h3,
    .footer_utility_pages h3,
    .footer_image_section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer_link {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer_media_logo {
        gap: 1rem;
    }

    .footer_media_logo_images {
        width: 40px;
        height: 40px;
    }

    .footer_images {
        gap: 0.5rem;
    }

    .footer_bottom {
        font-size: 0.8rem;
        margin-top: 2.5rem;
    }

    .footer_pages_list,
    .utility_pages_list {
        list-style: none;
        display: flex;
        flex-direction: row;
        background-color: red;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

@media screen and (min-width: 1200px) {
    .footer_container {
        gap: 5rem;
    }

    .footer_text {
        max-width: 350px;
    }

    .footer_images {
        gap: 1.2rem;
    }
}