.contact-form {
    background: white;
}

.contact-form h2 {
    color: #1E2452;
    font-weight: 700;
    font-size: 1.8rem;
}

.form-control {
    border: 2px solid #1E2452;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(30, 36, 82, 0.25);
}

.form-check-input:checked {
    background-color: #1E2452;
    border-color: #1E2452;
}

.btn-primary {
    background: #1E2452;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #142058;
    transform: translateY(-2px);
}

.map-container {
    height: 100%;
    min-height: 100px;
}

.ratio-16x9 {
    --bs-aspect-ratio: 90%; /* 16:9 aspect ratio */
}

iframe {
    width: 100%;
    height: 60%;
}


@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}