/* How to Get Involved Section */
.get-involved {
    padding: 40px 20px;
    text-align: center;
}

.get-involved h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.involvement-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.option {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.option:hover {
    transform: translateY(-10px);
}

.option img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.option h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3498db;
}

.option p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.option .btn {
    text-decoration: none;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.option .btn:hover {
    background-color: #1b6698;
}

@media (max-width: 860px) {
    .get-involved h2 {
        font-size: 28px;
    }

    .option {
        width: 100%;
        margin-bottom: 20px;
    }

    .option h3 {
        font-size: 20px;
    }

    .option p {
        font-size: 14px;
    }

}
