/* Co-founders Section */
.cofounders {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    margin-left: 100px;
    margin-top: 40px;
  }
  
  .cofounders-text h2 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
    font-family:'bely-display, sans-serif';
  }
  
  .cofounders-text p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
  }
  
  .members-list {
    background: #fff;
    border-radius: 10px;
    border: 3px solid black;
    padding: 20px;
    width: 350px;
    position: relative;
    margin-right: 100px;
    transform: translate(-8px, -8px);
  }
  
  .sombra{
    border-radius: 10px;
    width: 400px;
    margin-right: 100px;
    background-color: #71A894;
    position: static;
  }
  
  
  .members-list h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .members-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .members-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .members-list li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .member-info {
    display: flex;
    flex-direction: column;
  }
  
  .member-info strong {
    font-size: 1em;
    color: #333;
  }
  
  .member-info span {
    font-size: 0.9em;
    color: #555;
  }
  