header {
      background: linear-gradient(#17C9ED, rgba(0,0,0,0.6));
      color: #fff;
      padding: 2rem 1rem;
      padding-top: 150px;
      text-align: center;
    }
    h1, .about,.team{
      font-family: 'outfit';
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }

    header p {
      font-size: 1.2rem;
      margin-top: 0.5rem;
    }

    section {
      padding: 0rem 2rem;
      max-width: 1100px;
      margin: auto;
    }
    .box-container{
      margin-top: 4rem;
    }

    .about h2 {
      text-align: center;
      margin-bottom: 1rem;
      font-size: 2rem;
      color: gray;
    }

    .about p {
      text-align: justify;
      text-align: center;
      max-width: 900px;
      margin: auto;
    }

    .team {
      margin-top: 3rem;
    }

    .team h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: gray;
    }

    .team-members {
      display: grid;
      gap: 2rem;
    }

    .card {
      background: #fff;
      place-items: center;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
      padding: 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .card img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
    }

    .card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.3rem;
      color: #333;
    }

    .card p {
      font-size: 0.95rem;
      color: #666;
    }