.checkbox-custom-form5-transparent-black {
    appearance: none;
    background-color: transparent;
    border: 1px solid white;
    width: 20px;
    height: 18px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
}

.checkbox-custom-form5-transparent-black:checked {
    background-color: transparent;
}

.checkbox-custom-form5-transparent-black:checked::before {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    .fw-text-md-40-px {
        font-size: 40px !important;
    }
}


.map-container {
    position: relative;
    top: -50%; /* Position the map higher to show more behind the form */
    left: 0;
    width: 100%;
    height: 70vh; /* Set fixed height to match iframe height */
    z-index: 1; /* Lower z-index to position behind the form */
}

.map-container iframe {
    display: block; /* Remove inline spacing */
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ensure form content is above the map */
.container.position-relative {
    z-index: 2; /* Higher z-index to position above the map */
}

.row.box-shadow-4 {
    background-color: rgba(255, 255, 255, 0.85); /* Increased transparency to see more of the map behind */
    position: relative;
    z-index: 2; /* Ensure it's above the map */
}





