:root {
    --primary-color: #e6ae59;
    /* Gold from the original site */
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #fff;
    --input-border: #ddd;
    --input-focus: #e6ae59;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Video Banner Styles */
.banner-container {
    position: relative;
    width: 100%;
    /* Mobile optimal height or aspect ratio can be handled by the video itself */
    background-color: #000;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: auto;
    display: block;
    /* Removes bottom space */
}

.banner-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    width: 80px;
    /* Adjust based on logo appearance */
    height: auto;
    border-radius: 5px;
    /* Optional rounded corners */
}

/* Content Styles */
.content-wrapper {
    padding: 20px;
    background-color: var(--white);
    max-width: 600px;
    /* Constrain width on larger screens */
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #444;
}

.intro-text p {
    margin-bottom: 15px;
}

/* Form Styles */
.form-container {
    background-color: var(--white);
    padding: 10px;
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--input-focus);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.radio-option input,
.checkbox-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.date-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #cf9b4e;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .banner-logo {
        width: 100px;
    }

    .content-wrapper {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: -20px;
        /* Slight overlap effect if desired */
        position: relative;
        z-index: 10;
        border-radius: 10px;
    }
}