/* MAIN CONTENT */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.label {
    width: 200px;
    font-weight: bold;
    background: #f0f6ff;
}

.map-box {
    margin-top: 10px;
    border: 1px solid #c7dbdf;
    padding: 5px;
    border-radius: 6px;
}


.link-underline {
  position: relative;
  text-decoration: none;
  font-weight: 600;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #0078ff;
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .section .container {
        padding: 20px;
    }

    .label {
        width: 100%;
        display: block;
        margin-bottom: 6px;
    }

    .info-table td {
        display: block;
        width: 100%;
    }

    .map-box iframe {
        height: 250px;
    }
    
}
