@media (max-width: 1200px) {

    .iframe-google-maps {
        width: 800px;
        height: 400px;
    }

    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(7, auto);
    }
}

@media (max-width: 992px) {
    .maps-section {
        margin: 15px auto;
    }

    .iframe-google-maps {
        width: 700px;
        height: 300px;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(10, auto);
    }

    .custom-line-2 {
        height: 2px;
        margin: 10px auto 20px auto;
    }
}

@media (max-width: 768px) {
    .iframe-google-maps {
        width: 450px;
        height: 250px;
    }

    .custom-line-2,
    .custom-line-3 {
        width: 50%;
    }

    .links-grid a {
        font-size: 14px;
    }

    .custom-line-3 {
        margin: 10px auto 45px auto;
    }
}

@media (max-width: 480px) {
    .iframe-google-maps {
        width: 300px;
        height: 200px;
    }

    .maps-title,
    .links-title {
        font-size: 20px;
    }

    .links-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(20, auto);
    }
}

@media (max-width: 320px) {
    .iframe-google-maps {
        width: 250px;
        height: 150px;
    }
}