
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');


  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
  }

  .header {
    text-align: center;
    margin-bottom: 64px;
    font-size: medium;
    color: black;
  }

  .header span {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .header h1 {
    font-size: 35px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
  }

  .header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:60px;
    padding: 0 12px;
  }

  .team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f3f4f6;
    margin-bottom: 20px;
  }

  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .member-name {
    color: #fe6d6a;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .member-role {
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .member-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .social-links {
    display: flex;
    gap: 8px;
  }

  .social-link {
    width: 20px;
    height: 20px;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .social-link svg {
    display: block;
  }

  /* Responsive Breakpoints */
  @media (max-width: 900px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
    }
  }

  @media (max-width: 640px) {
    .container {
      padding: 48px 16px;
    }

    .team-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 0;
    }

    .header {
      margin-bottom: 48px;
    }

    .member-image {
      border-radius: 12px;
    }
  }
  

  .jobs-list {
          display: flex;
          flex-direction: column;
          gap: 16px;
          margin-bottom: 48px;
      }

      .job-card {
          background: white;
          border-radius: 12px;
          padding: 24px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
                      0 1px 2px rgba(0, 0, 0, 0.1);
      }

      .job-info {
          display: flex;
          flex-direction: column;
          gap: 8px;
      }

      .job-category {
          font-size: 13px;
          color: #6b7280;
          text-transform: uppercase;
          letter-spacing: 0.05em;
      }

      .job-title {
          font-size: 18px;
          color: #111827;
          font-weight: 500;
      }

      .job-meta {
          display: flex;
          gap: 16px;
          color: #6b7280;
          font-size: 14px;
      }

      .meta-item {
          display: flex;
          align-items: center;
          gap: 4px;
      }

      .apply-btn {
          background-color: #ff6b6b;
          color: white;
          padding: 8px 16px;
          border-radius: 6px;
          text-decoration: none;
          font-size: 14px;
          font-weight: 500;
          transition: background-color 0.2s;
      }

      .apply-btn:hover {
          background-color: #ff5252;
      }
      .trial-section {
          background-color: #ff6b6b;
          padding: 24px;
          border-radius: 12px;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .trial-text {
          color: white;
          font-size: 18px;
          font-weight: 500;
      }

      .trial-btn {
          background-color: white;
          color: #ff6b6b;
          padding: 10px 20px;
          border-radius: 6px;
          text-decoration: none;
          font-weight: 500;
          font-size: 14px;
      }