body {
    background-color: #f0fdf4;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
}

header h1 {
    color: #1a2e1a;
}

form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Row Layout for First/Last Name and Radio buttons */
.row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.input-group {
    flex: 1; /* Makes inputs equal width */
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2b422b;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #86a386;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Radio Button Styling */
.radio-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #86a386;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    cursor: pointer;
}

.radio-label {
    margin: 0 0 0 10px;
    font-weight: normal;
    cursor: pointer;
}

/* Submit Button */
button {
    background-color: #0c7d41;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #085a2e;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.small-label { margin: 0; font-size: 0.9em; font-weight: normal; }