.contact-section {
    width: 100%;
    padding: 0px 0 60px;
    box-sizing: border-box;
}

.contact-section .contact-section__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.contact-section .contact-section__left {
    width: calc(100% / 2 - 10px);
}

.contact-section .contact-section__image {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.contact-section .contact-section__left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-section .contact-section__right {
    width: calc(100% / 2 - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.contact-section .contact-section__title {
    font-weight: bold;
    color: #000000;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    padding-left: 83px;
    margin-bottom: 35px;
}

.contact-section .contact-section__info-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .contact-section__info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.contact-section .contact-section__info-item .contact-section__info-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.contact-section .contact-section__info-item .contact-section__info-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-section .contact-section__info-item .contact-section__info-title {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    margin-bottom: 5px;
}

.contact-section .contact-map {
    width: 100%;
    margin-top: 50px;
}

.contact-section .contact-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
}