/* CSS from section:team */
.professional-team-section {
    padding: 60px 24px;
  }

  .team-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-main-title {
    /* Based on style_2, color adjusted for dark background */
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 64px;
  }

  .team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .team-card {
    /* Based on style_3 */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 40px;
    width: 100%;
    max-width: 330px;
    text-align: center;
  }

  .team-member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 38px;
  }

  .team-member-name,
  .team-member-role {
    /* Based on style_4 */
    color: #5a4f4d;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
  }

  .team-member-name {
    margin-bottom: 12px;
  }

  .team-member-role {
    margin-bottom: 32px;
  }

  .team-member-experience {
    text-align: left;
    width: 100%;
  }

  .experience-title,
  .experience-list li {
    /* Based on style_5 */
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .experience-title {
    margin: 0 0 8px 0;
  }

  .experience-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .experience-list li {
    position: relative;
    padding-left: 1.2em;
  }

  .experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4b5563;
  }

  @media (max-width: 768px) {
    .professional-team-section {
      padding: 40px 16px;
    }
    .team-main-title {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 40px;
    }
    .team-grid {
      gap: 24px;
    }
  }
