.about-us-meet-the-team  {
    padding-top: 90px;
    padding-bottom: 130px;
}

.about-us-meet-the-team .beacon-container {
    flex-wrap: wrap;
}

.about-us-meet-the-team h2 {
    color: #E4F9F7;
    font-family: Termina;
    font-size: 48px;
    font-style: normal;
    font-weight: 400; 
    line-height: 57.6px;
}

.about-us-meet-the-team p {
    color: #EDE9E3;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.6px;
    max-width: 400px;
    width: 100%;
}

.about-us-meet-the-team .meet-the-team-left {
    flex: 1;
}

.about-us-meet-the-team .meet-the-team-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
}

.about-us-meet-the-team .meet-the-team-full {
    flex: 1 0 100%;
    padding-top: 125px;
}

.about-us-meet-the-team .custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 20px;
    border: none;
    border-radius: 4.047px;
    background: #EDE9E3;
    cursor: pointer;
    text-decoration: none!important;
}

.about-us-meet-the-team .custom-button {
    color: #00222B;
    font-family: Poppins;
    font-size: 17.038px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.446px;
    margin-top: 16px;
}

.about-us-meet-the-team .custom-button:hover {
    background: #9CC5D3;
    color: #00222B;
}

.about-us-meet-the-team .custom-button:hover .button-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease; 
}

.about-us-meet-the-team .button-icon {
    width: 11.465px;
    height: 11.465px;
    object-fit: contain;
}


.about-us-meet-the-team .meet-the-team-full .team-members-grid {
    display: flex;
    gap: 30px;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

.about-us-meet-the-team .meet-the-team-full .team-member-image img {
    width: 349px;
    border-radius: 6px;
}

.about-us-meet-the-team .team-member-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: calc(33% - 18px);
}

/* Team Member Info Box (Inside Image) */
.about-us-meet-the-team .team-member-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #EDE9E3;
    padding: 10px 15px;
}

.about-us-meet-the-team .team-member-info-button {
    position: absolute;
    bottom: 100px;
    right: 15px;
    border-radius: 6px;
    background: #EDE9E3;
}

.about-us-meet-the-team .team-member-info-button .custom-button {
    margin: 0;
}

/* LinkedIn Icon */
.about-us-meet-the-team .linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.about-us-meet-the-team .linkedin-icon img {
    width: 18px;
    height: 18px;
}

/* Team Member Name & Position */
.about-us-meet-the-team .team-member-text {
    text-align: left;
}

.about-us-meet-the-team .team-member-text h4 {
    font-size: 16px;
    margin: 0;
    color: #00222B;
    font-weight: 600;
}

.about-us-meet-the-team .team-member-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}


 


@media (max-width: 768px) {
    .about-us-meet-the-team .meet-the-team-right {
        
        display: none;
    }

    .about-us-meet-the-team {
        padding: 50px 30px;
    }

    .about-us-meet-the-team h2 {
        color: #EDE9E3;
        font-family: Termina;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28.8px;
    }

    .about-us-meet-the-team p {
        color: #E4F9F7;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 19.2px;
    }

    .about-us-meet-the-team .meet-the-team-full {
        flex: 1 0 100%;
        padding-top: 0px;
    }

    .about-us-meet-the-team .meet-the-team-full .team-members-grid {
        display: flex;
        gap: 30px;
        flex-direction: row;
    }

    .about-us-meet-the-team .meet-the-team-full .team-member-image img {
        width: 349px;
        border-radius: 6px;
        height: 430px;
        object-fit: cover;
        object-position: top;
    }

    .about-us-meet-the-team .team-member-card {
        width: calc(50% - 15px);
    }
}


@media (max-width: 600px) { 
    .about-us-meet-the-team .team-member-card {
        width: 100%;
    }
    .about-us-meet-the-team .meet-the-team-full .team-member-image img {
        width: 100%; 
    }
}