/* General Page Styling */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Main Section Styling */
.get-involved-container {
    padding: 40px 20px;
    text-align: center;
}

.get-involved-container h1 {
    font-size: 2.5em;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.get-involved-container p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Volunteer Section */
.volunteer-section {
    background-color: #f0f8f7;
    padding: 40px 20px;
    text-align: center;
}

.volunteer-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.volunteer-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.volunteer-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.volunteer-button:hover {
    background-color: #218838;
}

/* Donation Section */
.donate-section {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.donate-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.donate-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.donate-section img {
    max-width: 100px;
    margin-bottom: 20px;
}

.donate-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    background-color: #0069d9;
}

/* Get Involved Section */
.get-involved-ways {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.get-involved-way {
    background-color: #e0ffe0;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    margin: 20px;
    text-align: center;
}

.get-involved-way img {
    max-width: 100px;
    margin-bottom: 15px;
}

.get-involved-way h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.get-involved-way p {
    font-size: 1em;
    margin-bottom: 20px;
}

.get-involved-way a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.get-involved-way a:hover {
    background-color: #218838;
}


.events-intro {
    text-align: center;
    background-color: #e0ffe0;
    color: #4CAF50;
    padding: 40px 0;
}

.event-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.event-box {
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
}

.event-box img {
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.event-text {
    padding: 20px;
    flex-grow: 1;
}

.event-text h2 {
    color: #1b4332;
    font-size: 24px;
}

.event-text p {
    color: #555;
    font-size: 16px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .get-involved-ways {
        flex-direction: column;
        align-items: center;
    }

    .get-involved-way {
        width: 90%;
    }
}
