#map {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

.map-section {
    margin-top: 60px;
}

.hero {
    background-color: #177E8F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: inherit;
}

.hero > div {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: #177E8F;
    border: none;
}

.btn-primary:hover {
    background-color: #146c7a;
}

/* Custom Marker */
.custom-marker {
    position: relative;
    text-align: center;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background: #177E8F;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.marker-pin::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 7px;
    width: 6px;
    height: 10px;
    background: #177E8F;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.marker-label {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #177E8F;
}