/* Volunteer Opportunities Section */
.volunteer-opportunities {
    padding: 4rem 2rem;
    text-align: center;
}

.volunteer-opportunities h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.volunteer-opportunities .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.opportunity-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.opportunity-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.opportunity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.opportunity-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
}