.contact-regional-info-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 16px;
    border: 1px solid #EDEDED;
    background: #FFF;
}

.contact-info-static,
.contact-info-regional {
    flex: 1;
    min-width: 50%;
    padding: 32px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.contact-info-regional {
    border-left: 1px solid #EDEDED;
    position: relative;
}
.contact-info-title {
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.contact-info-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    width: 16x;
    height: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text {
    color: #222;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contact-info-text a {
    color: #333333;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.additional-addresses-link {
    color: #E32222;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.additional-addresses-link:hover {
    text-decoration: underline;
}

.additional-addresses-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 13px;
}

/* Стили для попапа с адресами */
.addresses-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.addresses-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.addresses-popup-close {
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
    position: absolute;
    right: 5px;
    z-index: 10;
}

.addresses-popup-close:hover {
    color: #E32222;
}

.addresses-popup-body {
    max-height: 133px;
    overflow-y: auto;
}

.addresses-wrapper {
    position: relative;
}

.address-item {
    padding: 32px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.4;
}

.address-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.address-item-title {
    margin-bottom: 16px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.3px;
}

.address-item-address {
    margin-bottom: 8px;
    color: #444;
}

.address-item-phone {
    margin-bottom: 5px;
}

.address-item-phone a {
    color: #333;
    text-decoration: none;
}

.address-item-phone a:hover {
    text-decoration: underline;
}

.address-item-hours {
    color: #666;
    font-size: 13px;
}

/* Стили для кнопок прокрутки при необходимости */
.address-scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.scroll-prev, .scroll-next {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    transition: background-color 0.2s, color 0.2s;
}

.scroll-prev:hover, .scroll-next:hover {
    background-color: #E32222;
    color: #fff;
    border-color: #E32222;
}

.contact-info-error {
    color: #777777;
    font-style: italic;
    font-size: 13px;
}

@media (max-width: 768px) {
    .contact-regional-info-container {
        flex-direction: column;
    }

    .contact-info-static,
    .contact-info-regional {
        width: 100%;
        margin-bottom: 15px;
        padding: 32px;
    }
    .contact-info-wrap {
        flex-direction: column;
        gap: 8px;
    }
    .contact-info-title {
        color: #222;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.24px;
    }
    .contact-info-regional {
        border-top: 1px solid #EDEDED;
        border-left: unset;
    }
    .addresses-popup-body {
        max-height: 266px;
    }
}