.team-section {
    padding: 50px 0;
    background-color: #f5f5f5;
    color: #333;
}

.team-section h1 {
    color: #b89b5e;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: bold;
    letter-spacing: 1px;
}

.team-section h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #b89b5e;
    margin: 8px auto;
    border-radius: 5px;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.team-card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 80%;
    height: 520px;
    align-items: stretch;
}


.team-image {
    flex: 1;
    overflow: hidden;
}

.team-image img {
    margin: -10px;
    height: 102%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4sease-in-out;
}


.team-info {
    flex: 2; 
    background-color: #fdfdfd;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3.member-name {
    margin: 0 0 8px;
    color: #222;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Georgia', serif;
    height: 8%;
}

.team-info p.position {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #b89b5e;
    font-family: 'Arial', sans-serif;
    height: 5%;
    margin-bottom: 2%;
}

.team-info p.bio {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    text-align: justify;
    font-family: 'Arial', sans-serif;
    height: 85%;
}

.team-info hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}


@media (max-width: 992px) {
    .team-card {
        flex-direction: column;
        text-align: center;
        width: 75%;
        height: auto;
    }

    .team-image {
        width: 100%;
        border-bottom: 3px solid #b89b5e;
    }

    .team-image img{
        width: 100%;
        height: auto;
    }

    .team-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .team-card {
        width: 90%;
    }

    .team-info h3.member-name {
        font-size: 20px;
    }

    .team-info p.position {
        font-size: 14px;
    }

    .team-info p.bio {
        font-size: 13px;
    }
}