.hero {
    background: url('assets/volunteer_hero.webp') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}


/*Volunteer Section*/
.application-process {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.application-process h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #5aba4a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.process-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.step-box {
    width: 200px;
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    background-color: #eef7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: #1d5b1d;
}

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5aba4a;
    margin-bottom: 10px;
}

.step-box h3 {
    font-size: 1.1rem;
    color: #0D0D0D;
    margin-top: 0;
}

/*Volunteer Sign Up*/
.volunteer-signup {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.volunteer-signup h2 {
    text-align: center;
    color: #d9534f;
    margin-bottom: 20px;
}

.volunteer-signup p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #5cb85c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #4cae4c;
}


