/* Donation Form Container */
.donation-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f4e9;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Heading and Paragraph */
.donation-form h2 {
    text-align: center;
    color: #5d3c0b;
    font-size: 24px;
    margin-bottom: 10px;
}

.donation-form p {
    text-align: center;
    color: #5d3c0b;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Form Labels */
.donation-form label {
    font-weight: bold;
    color: #5d3c0b;
    margin-top: 15px;
    display: block;
}

/* Input Fields and Select Dropdown */
.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="number"],
.donation-form select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #c7bca1;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fffdf7;
    box-sizing: border-box;
}

/* Custom Amount Field Hidden by Default */
.custom-amount-label,
#custom-amount {
    display: none;
}

/* Submit Button */
.donation-form .submit-button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #5d3c0b;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donation-form .submit-button:hover {
    background-color: #764c24;
}

/* Contact Form Container */
.contact-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f4e9;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Heading and Paragraph */
.contact-form h2 {
    text-align: center;
    color: #5d3c0b;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form p {
    text-align: center;
    color: #5d3c0b;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Form Labels */
.contact-form label {
    font-weight: bold;
    color: #5d3c0b;
    margin-top: 15px;
    display: block;
}

/* Input Fields and Textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #c7bca1;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fffdf7;
    box-sizing: border-box;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    height: 120px;
}

/* Submit Button */
.contact-form .submit-button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #5d3c0b;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #764c24;
}
