.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 연락처 정보 영역 */
.contact-info {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-header {
    padding: 30px 25px 20px;
    border-bottom: 3px solid #FF8A3D;
    background: linear-gradient(135deg, #FF8A3D 0%, #FF6B35 100%);
}

.contact-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.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;
}

/* 지도 영역 */
.contact-maps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.map-section {
    display: flex;
    flex-direction: column;
}

.map-header {
    margin-bottom: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #FF8A3D;
}

.map-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.map-address {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-map #daumRoughmapContainer1763734911806,
.contact-map #daumRoughmapContainer1763734972967 {
    width: 100% !important;
    height: 450px !important;
}

.contact-map #daumRoughmapContainer1763734911806 iframe,
.contact-map #daumRoughmapContainer1763734972967 iframe {
    width: 100% !important;
    height: 100% !important;
}

/* 태블릿 */
@media (max-width: 992px) {
    .contact-container {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-maps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-map #daumRoughmapContainer1763734911806,
    .contact-map #daumRoughmapContainer1763734972967 {
        height: 400px;
    }
    
    .map-title {
        font-size: 20px;
    }
    
    .contact-table th {
        width: 150px;
    }
    
    .contact-table th,
    .contact-table td {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px 15px;
    }
    
    .contact-header {
        padding: 25px 20px 15px;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .contact-maps {
        gap: 25px;
        margin-top: 30px;
    }
    
    .map-header {
        padding: 18px;
    }
    
    .map-title {
        font-size: 18px;
    }
    
    .map-address {
        font-size: 14px;
    }
    
    .contact-map {
        margin-bottom: 20px;
    }
    
    .contact-map #daumRoughmapContainer1763734911806,
    .contact-map #daumRoughmapContainer1763734972967 {
        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: 15px 10px;
    }
    
    .contact-header {
        padding: 20px 15px 12px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-maps {
        gap: 20px;
    }
    
    .map-header {
        padding: 15px;
    }
    
    .map-title {
        font-size: 16px;
    }
    
    .map-address {
        font-size: 13px;
    }
    
    .contact-map #daumRoughmapContainer1763734911806,
    .contact-map #daumRoughmapContainer1763734972967 {
        height: 300px;
    }
    
    .contact-table th,
    .contact-table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}