  /* Optional: move to your main CSS file */

  .about-panel {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--bs-primary);
  }

  .about-kicker {
    letter-spacing: 0.08em;
  }

  .team-card {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.15);
  }

  .team-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #0dcaf0);
  }