/* 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: 40px; /* Font size in px */
    margin-bottom: 30px;
    color: #00b33c; /* 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: #00b33c; /* Green color for Volunteer Signup */
    color: #ffffff; /* White text */
}

.cta-button.volunteer:hover {
    background-color: #009920; /* Darker green on hover */
}

.cta-button.donate {
    background-color: #f4f4f4; /* Light grey for Newsletter Signup */
    color: #00b33c; /* Green text */
    border: 2px solid #00b33c; /* Green border */
}

.cta-button.donate:hover {
    background-color: #e0e0e0; /* Slightly darker grey on hover */
    color: #009920; /* Darker green text */
}

@media (max-width: 768px) {

    .call-to-action h2{
        font-size: 32px;
    }

    .cta-button{
        font-size: 16px;
    }

}