.contacts-section {
    padding: 60px 0;
}
.contacts-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.contacts-left {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 40%;
}

.contacts-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}
.contact-block {
    margin-bottom: 25px;
}
.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}
.messenger-links {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
.messenger-links a {
    display: inline-block;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.messenger-links .viber {
    background-color: #7360f2;
}
.messenger-links .telegram {
    background-color: #0088cc;
}

/* Карта */
.contacts-right {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 45%;
    width: 100%;
}

#map {
  width: 100%;
  height: 650px;
  border-radius: 8px;
}

