/* Estilos para la sección de nosotros */
.nosotros-section {
    padding: 4rem 0;
}

.nosotros-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.equipo-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.miembro-equipo {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.miembro-equipo:nth-child(even) {
    flex-direction: row-reverse;
}

.miembro-equipo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.miembro-info {
    flex: 1;
}

.miembro-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.miembro-info h4 {
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.miembro-info p {
    color: #666;
    line-height: 1.6;
}
