

@media screen and (min-width: 769px) {
    .main-content {
        margin-left: 220px;
        margin-right: 220px;
    }

    .team-member:nth-child(odd) {
        flex-direction: row;
    }

    .team-member:nth-child(even) {
        flex-direction: row-reverse;
    }
}



body {
    font-family: "Helvetica", sans-serif;
    background-color: #fff;
    color: #000;
   
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    flex: 1;
    padding: 20px;
    margin-top: 80px;
     
}

h2 {
    font-family: "Frutiger semibold", sans-serif;
     text-align: center;   
}

.team-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff; /* Fondo blanco */
}

.team-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.team-member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}




.team-member.alternated {
   
}

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

.member-info {
    flex: 1;
    text-align: left;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.member-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}



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

.member-info {
    flex: 1;
    text-align: left;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}


.member-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.team-member.alternated {
    flex-direction: row-reverse;
}
p {
  line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;  
}



@media screen and (max-width: 768px) {
    .main-content {
        margin: 0 10px !important;
        padding: 0 !important;
    }

    .team-member {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
        padding: 0 10px;
        width: 100%;
        gap: 20px;
    }

    .team-member.alternated {
        flex-direction: column-reverse !important;
    }

    .member-photo {
        text-align: center;
        margin-bottom: 10px;
    }

    .member-photo img {
        width: 80%;
        max-width: 240px;
        height: auto;
        border-radius: 10px;
    }

    .member-info {
        text-align: justify;
        font-size: 14px;
        line-height: 1.5;
        width: 100%;
    }

    .member-name {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }
}
