  .about-section {
      background: url('your-background.png') no-repeat center center;
      background-size: cover;
      padding: 40px 20px 130px;
      text-align: center;
      position: relative;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
	  border-bottom-right-radius: 20px;
	  border-bottom-left-radius: 20px;
      background-color: #d3d3d3;
      overflow: visible;
	  margin:10px;
    }

    .about-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #000;
    }

    .about-section p {
      max-width: 900px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.6;
      color: #111;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 150px;
      margin-top: -60px; /* pulls the team section out of grey */
      position: relative;
      z-index: 5;
    }

    .team-card {
      background-color: #fff;
      width: 220px;
      padding: 20px 10px 30px;
      border-radius: 20px;
      border: 2px solid #d3d3d3;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      position: relative;
      transition: transform 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
    }

    .profile-circle img{
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto;
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
    }
	

    .team-name {
      margin-top: 70px;
      font-size: 18px;
      font-weight: bold;
      color: #000;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .team-role {
      font-size: 14px;
      color: #555;
      margin-top: 5px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .team-card {
        width: 100%;
        max-width: 250px;
      }
    }
	