.section-04 {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-04-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-04-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-04-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #4E5968;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-04-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: #353535;
}

.location-content-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
    padding: 60px;
}

.location-bg-image {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    object-fit: cover;
    z-index: 1;
}

.location-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.location-info-box {
    flex: 0 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin-right: -50px;
}

.location-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    color: #184487;
    margin-bottom: 20px;
}

.location-info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-info-item {
    display: flex;
    gap: 15px;
}

.location-info-item div {
    flex: 1;
}

.location-info-item.address-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 5px;
}

.location-info-label {
    min-width: 70px;
    font-size: 14px;
    font-weight: 500;
    color: #4E5968;
}

.location-info-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.location-info-item > p {
    color: #353535;
}

.location-info-item .main-address {
    font-size: 16px;
    color: #353535 !important;
    font-weight: 500;
    margin: 0;
}

.location-info-item .sub-address {
    font-size: 16px;
    color: #999 !important;
    font-weight: 500;
    margin: 5px 0 0 0;
}

.location-info-item a {
    color: #353535;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.location-info-item a:hover {
    text-decoration: underline;
}

.location-map-box {
    flex: 0 0 auto;
    z-index: 3;
    margin-top: 300px;
    position: relative;
}

.location-map-box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* 모바일 반응형 수정 부분 */
@media (max-width: 768px) {
    .section-04 {
        padding: 40px 0;  /* 60px → 40px */
    }
    
    .location-bg-image {
        display: none;
    }
    
    .section-04-header {
        margin-bottom: 20px;  /* 30px → 20px */
    }
    
    .section-04-header h2 {
        font-size: 22px;
    }
    
    .location-content-area {
        padding: 0;  /* 60px → 0 */
        min-height: auto;  /* 600px → auto */
    }
    
    .location-content-wrapper {
        flex-direction: column;
        gap: 20px;  /* 0 → 20px */
    }
    
    .location-info-box {
        padding: 0 20px;  /* 좌우 패딩만 유지 */
        background: none;
        backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        margin-right: 0;
    }
    
    .location-info-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .location-info-content {
        gap: 10px;  /* 15px → 10px */
    }
    
    .location-info-item.address-item {
        padding-bottom: 10px;  /* 15px → 10px */
        margin-bottom: 0;  /* 5px → 0 */
    }
    
    .location-info-label {
        min-width: 60px;
        font-size: 13px;
    }
    
    .location-info-item p,
    .location-info-item a {
        font-size: 13px;
    }
    
    .location-info-item .main-address,
    .location-info-item .sub-address {
        font-size: 14px;
    }
    
    .location-info-item .sub-address {
        margin: 3px 0 0 0;  /* 5px → 3px */
    }
    
    .location-map-box {
        width: calc(100% - 40px);  /* 좌우 20px씩 여백 */
        margin: 0 20px;  /* 좌우 여백 추가 */
        margin-top: 0;  /* 300px → 0 */
        min-height: auto;  /* 250px → auto */
    }
    
    .location-map-box img {
        width: 100%;  /* 이미지를 컨테이너에 맞춤 */
        height: auto;
    }
}

@media (max-width: 480px) {
    .section-04 {
        padding: 30px 0;  /* 더 작은 화면에서는 패딩 추가 감소 */
    }
    
    .location-info-box {
        padding: 0 15px;  /* 20px → 15px */
    }
    
    .section-04-header h2 {
        font-size: 20px;  /* 24px → 20px */
    }
    
    .location-map-box {
        width: calc(100% - 30px);  /* 좌우 15px씩 여백 */
        margin: 0 15px;
    }
}