/* Call to Action Section */
.call-to-action {
    padding: 50px 20px;
    background-color: #ffffff;
    /* White background for the section */
    text-align: center;
}

.call-to-action h2 {
    font-size: 32px;
    /* Font size in px */
    margin-bottom: 30px;
    color: #3498db;
    /* Consistent green color */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between buttons */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button.volunteer {
    background-color: #3498db;
    /* Green color for Volunteer Signup */
    color: #ffffff;
    /* White text */
}

.cta-button.volunteer:hover {
    background-color: #1b6698;
    /* Darker green on hover */
}

.cta-button.donate {
    background-color: #f4f4f4;
    /* Light grey for Newsletter Signup */
    color: #3498db;
    /* Green text */
    border: 2px solid #3498db;
    /* Green border */
}

.cta-button.donate:hover {
    background-color: #e0e0e0;
    /* Slightly darker grey on hover */
    color: #1b6698;
    /* Darker green text */
}

@media (max-width: 768px) {

    .call-to-action h2 {
        font-size: 28px;
    }

    .cta-button {
        font-size: 16px;
    }

}