.elementor-3755 .elementor-element.elementor-element-c943cf3{--display:flex;--background-transition:0.3s;}/* Start custom CSS */.body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 40px;
      background: #f8f8f8;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap; /* responsive if too many */
      justify-content: center;
      gap: 40px;
    }

    .member {
      background: white;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      width: 250px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .member:hover {
      transform: translateY(-5px);
    }

    .member img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 6px solid #9C27B0; /* purple border */
      object-fit: cover;
      margin-bottom: 15px;
    }

    .name {
      font-weight: bold;
      font-size: 18px;
      margin: 8px 0 4px;
    }

    .position {
      color: #555;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      .team-container {
        flex-direction: column;
        align-items: center;
      }
    }/* End custom CSS */