.contact-card {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 20px;
}

.adress-card {
    background-color: #f8f6f6;
    padding-top: 30px;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-right: 0; /* Ensure there's no extra margin by default */
}

/* Add media queries for responsiveness */
@media (max-width: 992px) { /* Tablet and smaller */
    .adress-card {
        margin-right: 30px; /* Remove the margin on smaller screens */
        margin-left: 0; /* Optional: Equalize margin for better layout */
        padding-left: 15px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 576px) { /* Mobile screens */
    .adress-card {
        margin-right: 30px;
        margin-left: 0;
        padding-left: 10px; /* Adjust further for mobile */
    }
}