/* ========================================= */
/* --- NEW COLOR SCHEME: DARK BLUE/GREEN --- */
/* ========================================= */

body {
    /* Main Background: Dark Blue */
    background-color: #002b3f;
    color: white; /* Main Text Color: White */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0; /* Remove padding to match the full-width header/footer layout */
    display: block; /* Override previous flex-centering */
}

/* * The main content container will now act like a 'section' in the new layout, 
 * using a different color and stretching wider. 
 */
main {
    /* Main Content Background: Darker Blue/Grey */
    background-color: #003344; 
    padding: 40px;
    border-radius: 0; /* Removing rounded corners for a modern, full-width section look */
    /* Adjusting shadow to be visible on dark background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    max-width: 100%; /* Allows it to take up the whole screen width */
    width: auto; /* Let content define width */
    min-height: 80vh; /* Ensure content section is prominent */
}

/* --- Headings --- */
h1, h2 {
    /* Accent Color: Bright Gold/Yellow */
    color: #ffd700; 
    /* Use a solid line or a subtle shadow instead of a full border for the dark theme */
    border-bottom: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding-bottom: 10px;
    margin-top: 30px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    border-bottom: 2px solid #004f2d; /* Use the dark green as a separator */
}

/* --- Form Sections --- */
form section {
    margin-bottom: 30px;
    padding: 20px;
    /* Section Border: Dark Green */
    border: 1px solid #004f2d; 
    border-radius: 8px; /* Slightly more rounded corners */
    /* Slight change in background for sections to differentiate */
    background-color: #003a4c;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: white; /* Ensure labels are white */
}

/* --- Input Fields --- */
input[type="text"],
input[type="date"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
    width: calc(100% - 22px);
    padding: 10px;
    /* Input Style: Light text on a very dark background */
    background-color: #002b3f; 
    color: white;
    border: 1px solid #004f2d; /* Dark Green border for contrast */
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* Styles for radio buttons and small notes */
.note {
    font-size: 0.9em;
    color: #a8a8a8; /* Light gray for secondary text */
    margin-top: 5px;
}

input[type="radio"] {
    margin-right: 5px;
}

/* --- Submission Button --- */
button[type="submit"] {
    /* Matching the bright yellow/gold accent color */
    background-color: #ffd700; 
    color: black; /* Black text on yellow button */
    padding: 15px 30px;
    border: none;
    border-radius: 12px; /* Matching the button style in the provided example */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    /* Matching the hover color */
    background-color: #ffea70; 
    color: black;
}

hr {
    border: 0;
    height: 1px;
    /* Dark Green Separator */
    background: #004f2d;
    margin: 30px 0;
}