/* Hero Section */
.hero {
    position: relative;
    height: 100vh; 
    background-image: url('assets/ngo-team.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay h1 {
    color: #ffff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

/*Content Section */
.about-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    color: #000;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-container ul {
    list-style-type: disc;
    padding-left: 50px; 
    font-size: 16px;
    line-height: 1.6;
}

.about-container li {
    margin-bottom: 20px;
}

.volunteer-btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    padding: 15px 25px;  
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.volunteer-btn:hover {
    transform: translateY(-5px);
}


