/* Volunteer Section Styles */
#volunteer {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.volunteer-container {
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-container h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.volunteer-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.volunteer-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.volunteer-btn {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 18px;
}

.volunteer-btn:hover {
    background-color: #d35400;
}

@media(max-width: 860px){
    .volunteer-container h2 {
        font-size: 26px;
    }

    .volunteer-container p {
        font-size: 14px;
    }

    .volunteer-btn {
        font-size: 14px;
    }
}