.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont {
    display: none !important;
}

.contact-highlight {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
}

.contact-highlight span {
    color: var(--point-color);
}

.contact-info-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--point-color);
}

.contact-icon {
    font-size: 40px;
    color: var(--point-color);
    margin-bottom: 20px;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    word-break: keep-all;
}

.contact-map-wrap {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-card {
        min-width: 100%;
    }
}