﻿
/* About Us Section */
.about-us {
    background: #fff;
    padding: 40px 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .about-us h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .about-us h3 {
        font-size: 1.5em;
        margin-top: 20px;
    }

    .about-us p {
        line-height: 1.6;
    }

/* Team Section */
.team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    background: #eaeaea;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 8px;
    width: 280px;
}

    .team-member img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .team-member h4 {
        margin: 10px 0 5px;
        font-size: 1.2em;
    }

    .team-member p {
        margin: 0;
    }



@media screen and (max-width: 992px) {
    .about-text-title {
        text-align: center;
    }

    .about-paragraph-contaier {
        padding-left: 10px;
        padding-right: 10px;
    }
}
