.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/teamphoto.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for better readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

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

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
}


@media (max-width:786px){
    .hero-content h1 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.2;
    }
    
}