/* External CSS for Volunteer Opportunities Section */
.volunteer-opportunities {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.volunteer-opportunities h2 {
    font-size: 32px;
    color: #00b33c;
    margin-bottom: 30px;
}

.volunteer-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.volunteer-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.volunteer-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.apply-button {
    display: inline-block;
    background-color: #00b33c;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #009a31;
}

@media (max-width: 768px) {

	.volunteer-opportunities h2{
		font-size: 24px;
	}

	.volunteer-card h3 {
	    font-size: 20px;
	}

	.volunteer-card p {
	    font-size: 14px;
	}

	.apply-button {
	    font-size: 14px;
	}

}