/* Form Section Styles */
.form-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.form-label {
    font-weight: 500;
}

/* Form Select Styling */
.choices__inner {
    min-height: 36px !important;
    max-height: 36px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    padding-left: 10px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
}

.choices[data-type*='select-one']::after {
    top: 18px !important;
    right: 10px;
}

.choices__list--dropdown {
    z-index: 1055 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-section {
        padding: 20px;
    }

    .parallax-video-container,
    .parallax-video-container video {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .form-section {
        margin: 20px 0;
    }
}