.contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.address-info {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.map-box {
    flex: 1;
    min-width: 300px;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}
    
.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
    
.btn-map {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}