body {
    font-family: Arial, sans-serif;
}

/* Contact Section*/
.contact-section {
    background-color: #bcdafa;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-left: 140px; */
    /* text-align: center; */
    /* border-radius: 8px;
    max-width: 800px;
    margin: auto; */
}

.contact-wrapper{
    /* text-align: center;
    align-self: center; */
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    /* text-align: center; */

}

.contact-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover;  /* Ensures the image covers the entire circular area */
}

.contact-info {
    flex: 1;
    font-family: Outfit;
    padding-left:4%;
}

.company-address {
    text-align: left;
}

.manager-name{
    color: #000;
    font-family: Outfit;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.manager-title{
    color: #000;

    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.manager-info{
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.company-address{
    color: #000;
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}


/* Team Section */
.team-section {
    padding: 20px;
    text-align: center;
    font-family: Outfit;
}

.team-section h2{
    color: #000;
    text-align: center;
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    margin: 10px;
    text-align: center;
    min-width: 200px;
    max-width: 400px;
    border-radius: var(--br);
    transition: 0.5s;
    text-decoration: none;
}

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

.member-name {
    margin: 10px 0 5px;
    font-size: 25px;
    font-weight: bold;
    color: black;
}

.job-title {
    font-size: 20px;
    color: gray;
}

.member-hover:hover {
    box-shadow: 0px 3px 10px 5px #e9e9e9;
}

.center-image-section {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 10px;
}

.center-image-section img {
    width: 1000px; /* Adjust this as per the actual image size */
    height: auto;
}


@media only screen and (max-width: 1000px) {
    .contact-section{
        padding-left: 10%;
    }
}

@media (max-width: 1200px) {
    .center-image-section img {
        width: 500px; /* Adjust this as per the actual image size */
        height: auto;
    }

    .team-member {
        flex: 1 1 calc(50% - 20px);
    }
    .manager-name{
        font-size: medium;
    }
    .manager-title{
        font-size: medium;
    }
    .manager-info{
        font-size: small;
    }
    .company-address{
        font-size: medium;
    }
    .team-section h2{
        font-size: medium;
    }
    .member-name {
        font-size: 18px;
    }
    .job-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .center-image-section img {
        width: 350px; /* Adjust this as per the actual image size */
        height: auto;
    }
    .team-member {
        flex: 1 1 100%;
    }
}
