.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 지도 영역 */
.contact-map {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-map #daumRoughmapContainer1762320574932 {
    width: 100%;
    height: 450px;
}

/* 연락처 정보 테이블 */
.contact-info {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-table th,
.contact-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #e9e9e9;
    font-size: 15px;
}

.contact-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 180px;
    white-space: nowrap;
}

.contact-table td {
    color: #555;
    font-weight: 400;
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
    border-bottom: none;
}

.contact-table tr:hover {
    background-color: #fafafa;
}

/* 태블릿 */
@media (max-width: 992px) {
    .contact-map #daumRoughmapContainer1762320574932 {
        height: 400px;
    }
    
    .contact-table th {
        width: 150px;
    }
    
    .contact-table th,
    .contact-table td {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }
    
    .contact-map {
        margin-bottom: 20px;
    }
    
    .contact-map #daumRoughmapContainer1762320574932 {
        height: 350px;
    }
    
    .contact-table {
        display: block;
    }
    
    .contact-table tbody {
        display: block;
    }
    
    .contact-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #e9e9e9;
    }
    
    .contact-table tr:last-child {
        border-bottom: none;
    }
    
    .contact-table th,
    .contact-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
        border-bottom: none;
    }
    
    .contact-table th {
        padding-bottom: 8px;
        background-color: transparent;
        font-size: 13px;
        color: #888;
        font-weight: 500;
    }
    
    .contact-table td {
        padding-top: 0;
        font-size: 15px;
        color: #333;
        font-weight: 400;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }
    
    .contact-map #daumRoughmapContainer1762320574932 {
        height: 300px;
    }
    
    .contact-table th,
    .contact-table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}


