@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacts-info {
        padding-right: 0;
        text-align: center;
    }

    .contacts-info h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .address,
    .social-title,
    .phone-title,
    .phone-number {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacts-map {
        height: 250px;
        justify-content: center;
        display: flex
;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .contacts-info h2 {
        font-size: 28px;
    }

    .address,
    .social-title,
    .phone-title,
    .phone-number {
        font-size: 16px;
        line-height: 20px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .contacts-map {
        height: 200px;
    }
}