/* Volunteer Hero Section */
.volunteer-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/volunteer-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    text-align: center;
}

.volunteer-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.volunteer-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.volunteer-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Volunteer Opportunities */
.volunteer-opportunities {
    padding: 6rem 0;
}

.volunteer-opportunities h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.opportunity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.opportunity-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.opportunity-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.requirements {
    list-style: none;
    padding: 0;
}

.requirements li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.requirements li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Volunteer Benefits */
.volunteer-benefits {
    padding: 6rem 0;
    background: var(--background-light);
}

.volunteer-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* Volunteer Form */
.volunteer-form-section {
    padding: 6rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.volunteer-form .form-group {
    margin-bottom: 1.5rem;
}

.volunteer-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-container input {
    width: auto;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .volunteer-hero h1 {
        font-size: 2.5rem;
    }

    .volunteer-hero p {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}