body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;

    /* --- UPDATED BACKGROUND IMAGE STYLES --- */
    background-image: url('placeholder-charity-background.jpg'); /* REPLACE THIS with your actual image file path or URL */
    background-size: cover; /* Ensures the image covers the whole background */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background image fixed while content scrolls */
    background-color: #343a40; /* Fallback color if image fails to load */
}

.container {
    /* Use a semi-transparent white background for the form to ensure text is readable */
    background-color: rgba(255, 255, 255, 0.95); 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Darker shadow to lift it off the background image */
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #007bff;
    text-align: center;
    margin-bottom: 5px;
}

p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
}

h2 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

#donateButton {
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#donateButton:hover {
    background-color: #218838;
}

.disclaimer {
    font-size: 12px;
    color: #dc3545;
    margin-top: 10px;
}

/* Confirmation Message Styling */
#confirmationMessage {
    background-color: #e9f7ef;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
}

#confirmationMessage h2 {
    color: #28a745;
    border-bottom: none;
    margin-top: 0;
}

#confirmationMessage strong {
    font-weight: 700;
}

.hidden {
    display: none;
}