.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: #f0fafc;
      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;
      }
    }
	
	.aboutus {
  text-align: center; 
  background: #f0fafc; 
  padding: 50px; 
  border-radius: 12px;
}

.aboutus h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}

.aboutus p {
  margin: 15px auto;
  max-width: 800px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* Bullet list styling */
.about-list {
  list-style: none; 
  margin: 20px auto;
  padding: 0;
  max-width: 600px;
  text-align: left;   /* align bullets properly */
}

.about-list li {
  font-size: 16px;
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

/* Custom check icon instead of plain bullet */
.about-list li::before {
  content: "✔";
  color: #0098da;   /* Proteczaa blue */
  font-weight: bold;
  position: absolute;
  left: 0;
}
