.location-wrap{
    max-width:1100px;
    margin:80px auto;
    padding:40px;
}
.location-wrap h2{
    font-size:32px;
    margin-bottom:30px;
}
#map{
    width:100%;
    height:450px;
    border-radius:12px;
}
.info-box{
    max-width:600px;
    margin:40px auto;          /* 완전 가운데 */
    background:#e6e6e6;
    padding:35px;
    border-radius:16px;        /* 둥글게 */
    line-height:1.8;
    text-align:center;         /* 글자 가운데 */
    font-size:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08); /* 카드 느낌 */
    transition:0.3s;
}

.info-box:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* 버튼 가운데 */
.map-btn{
    display:inline-block;
    margin:20px auto 0;
    padding:12px 24px;
    background:#111;
    color:#ffffff;
    border-radius:8px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.map-btn:hover{
    background:#333;
}