.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

.three-columns-container {
    display: flex;
    min-height: 680px;
    width: 100%;
    margin: 0 auto;
}

.column {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.map-column iframe {
    width: 100%;
    height: 680px;
    border: 0;
}

.contacts-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    line-height: 1.8;
    text-align: center;
    height: 680px;
}

.contacts-column h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contacts-column h3 {
    font-size: 24px;
    margin: 15px 0;
    color: #444;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
    color: #666;
}

.contact-info a {
    color: #2a5db0;
    text-decoration: none;
}

.form-column {
    background: #fff;
    height: 680px;
}

.boldtext {
  font-weight: 700;
}

@media (max-width: 768px) {
    .three-columns-container {
        flex-direction: column;
    }
    
    .contacts-column {
        order: 1;
    }
    
    .map-column {
        order: 2;
    }
    
    .form-column {
        order: 3;
        height: auto;
    }
    
    .column {
        width: 100%;
        flex: none;
    }
    
    .map-column iframe {
        height: 400px;
    }
}