.container1 {
    max-width: 1500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    text-align: center;
}

.donation-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.donation-options .option {
    text-align: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 30%;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.donation-options .option:hover {
    transform: translateY(-5px);
    border-color: #3c9664;
}

.option img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.donation-form {
    margin-top: 30px;
}

.donation-form label {
    display: block;
    margin: 10px 0 5px;
}

.donation-form input, 
.donation-form select, 
.donation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.donation-form button {
    background: #3c9664;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.donation-form button:hover {
    background: #3c9664;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .donation-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .donation-options .option {
        width: 80%; /* Wider for smaller screens */
    }
}

@media (max-width: 480px) {
    header{
        padding: 15px;
        font-size: 1rem;
    }

    .donation-options .option {
        width: 100%; /* Full width for extra small screens */
    }

    .donation-form input, 
    .donation-form select, 
    .donation-form textarea {
        padding: 8px;
    }

    .donation-form button {
        font-size: 14px;
        padding: 8px 15px;
    }
}
