  /* Timeline */
  .timeline { max-width: 80%; margin: 0 auto; padding: 48px 64px 64px; position: relative; }
  .timeline__line { position: absolute; left: 50%; top: 10%; bottom: 200px; width: 5px; background: var(--lime); transform: translateX(-50%); z-index: 0; }
  .timeline__row { display: grid; grid-template-columns: 1fr 160px 1fr; gap: 0; align-items: start; margin-bottom: -120px; position: relative; }
  .timeline__row:last-child { margin-bottom: 0; }
  .timeline__badge { width: 80px; height: 80px; background: var(--lime); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 20px; line-height: 1; text-transform: uppercase; z-index: 2; position: relative; }
  .timeline__content { padding: 0 24px; }
  .timeline__image { border-radius: 30px 30px 30px 0; overflow: hidden; height: 220px; margin-bottom: 16px; }
  .timeline__image img { width: 100%; height: 100%; object-fit: cover; }
  .timeline__row.right .timeline__image { border-radius: 30px 30px 0 30px; }
  .timeline__text { font-size: 20px;
    line-height: 1.3;
    margin-top: 30px;}
  .timeline__left { grid-column: 1; }
  .timeline__center { grid-column: 2; display: flex; justify-content: center; padding-top: 60px; }
  .timeline__right { grid-column: 3; }
  .timeline__row.right .timeline__left { visibility: hidden; }
  .timeline__row.left .timeline__right { visibility: hidden; }

  /* Team */
  .team { background: var(--green-light); padding: 56px 0; }
  .team__inner { max-width: 1280px; margin: 0 auto; padding: 0 53px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .team__card { background: #fff; border-radius: 20px; padding: 40px 30px; display: flex; flex-direction: column; align-items: center; text-align: left; }
  .team__photo { width: 152px; height: 152px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; flex-shrink: 0; }
  .team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 24px;
    margin-top: 15px;
}
  .team__role { font-size: 14px; font-weight: 500; font-style: italic; color: var(--green); margin-bottom: 12px; line-height: 1.4; }
  .team__bio { font-size: 16px; line-height: 1.5; color: var(--dark); }
  .team__bio p { margin-bottom: 8px; }
  .team__bio p:last-child { margin-bottom: 0; }

.partners{
  width: 80%;
  margin:0 auto;
}

.partners h3 {
    color: var(--green);
    font-size: 30px;
    font-weight: 500;
    margin: 100px 0 30px;
}

  /* Responsive */
  @media (max-width: 960px) {
    .timeline { padding: 32px 20px 48px; max-width: 100%; }
    .timeline__line { display: none; }
    .timeline__row { display: block; position: relative; margin-bottom: 40px; }
    .timeline__row:last-child { margin-bottom: 0; }
    .timeline__content { padding: 0; }
    .timeline__center { position: absolute; z-index: 3; padding-top: 0; top: 115px; }
    .timeline__row.left .timeline__center { right: 0; }
    .timeline__row.right .timeline__center { left: 0; }
    .timeline__row.right .timeline__left { display: none; }
    .timeline__row.left .timeline__right { display: none; }
    .timeline__image { height: 180px; border-radius: 20px !important; }
    .team__inner { grid-template-columns: 1fr; padding: 0 20px; }
  }


