#donation-form {
    margin-top: 40px;
    max-width: 500px;
    /* Adjust the width as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    /*    text-align: center;*/
}

.donation-form-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.donation-form-header p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: calc(100% - 20px);
    /* Adjust the width as needed */
    max-width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.submit-inquiry-btn {
    padding: 12px 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-inquiry-btn:hover {
    background-color: #d35400;
}

.map h3 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: -10px;
}

@media (max-width: 768px) {
    .donation-form-header h2 {
        font-size: 20px;
    }

    .donation-form-header p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .submit-inquiry-btn {
        font-size: 14px;
    }

    .map h3 {
        font-size: 20px;
    }
}