.hero {
    max-width: 1320px;
}
.hero-left {
    width: 100%;
}
.contacts {
    padding-top: 100px;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.contacts-title {
    font-size: 32px;
    font-family: "Montserrat-ExtraBold";
    font-weight: 100;
    color: #404040;
    padding-bottom: 60px;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
}
.contact-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-item-title {
    font-size: 20px;
    font-family: "Montserrat-Bold";
    font-weight: 100;
    color: #404040;
    padding-bottom: 10px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}
.contact-text {
    font-family: "Montserrat-Regular";
    font-size: 17.5px;
    font-weight: 100;
    color: #404040;
    padding-bottom: 10px;
    opacity: 70%;
}
.map {
    padding-right: 20px;
    padding-left: 20px;
}
.map-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 50px auto;
    gap: 20px;
}
.map-panel {
    width: 300px;
    border-radius: 12px;
    padding: 20px;

}
.map-panel-title {
    font-family: "Montserrat-Bold";
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 100;
    color: #404040;
}
.map-list {
    font-family: "Montserrat-Medium";
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 100;
}
.map-list>li {
    background-color: #3083FF;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}
.map-item {
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}
.map-item:hover {
    background-color: #2564c4;
    border-left: 3px solid #404040;
}
.map-view {
    flex: 1;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}
.custom-balloon {
    font-family: "Montserrat-Regular";
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.custom-balloon h4 {
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.custom-balloon p {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: #555;
}
.custom-balloon .worktime {
    font-size: 13px;
    color: #666;
    margin: 4px 0 10px;
}
.custom-balloon a {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    background: #3083FF;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.custom-balloon a:hover {
    background: #f7b500;
}
@media (max-width: 900px) {
    .map-wrapper {
        flex-direction: column;
    }
    .map-view {
        width: 100%;
        height: 400px;
        min-height: 300px;
    }
    .custom-balloon {
        width: auto;
        max-width: 90vw;
        padding: 10px 15px;
        font-size: 14px;
    }
    .custom-balloon h4 {
        font-size: 15px;
    }
    .custom-balloon p,
    .custom-balloon .worktime,
    .custom-balloon a {
        font-size: 13px;
    }
}