.transportation-info {
    width: 200px;
    height: 250px;
    box-sizing: border-box;
    border: 1px solid #D1D1D1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.transportation-info span {
    font-size: 18px;
    font-weight: bold;
}

.transportation-info .img-container {
    position: relative;
    top: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4089BC;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transportation-info-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
    margin-bottom: 20px;
}

.address-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 660px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

#map {
    width: 320px;
    height: 320px;
    box-sizing: border-box;
}

.address-info {
    width: 320px;
    height: 320px;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FAFAFA;
    border-left: 5px solid #154597;
}

.address-info .title {
    color: #154597;
    margin-bottom: 20px;
}

.address-info .address-info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.address-info .address-info-item .paragraph-medium {
    margin-bottom: 5px;
    font-weight: bold;
}