.volunteer-page {
    position: relative;
    overflow: hidden;
}

.volunteer-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: -1;
}

.volunteer-role-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.volunteer-role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.skill-badge {
    transition: all 0.2s ease;
}

.skill-badge:hover {
    transform: translateY(-2px);
    background-color: #10B981;
    color: white;
}
