.about-overview .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
  }
  
  .about-box {
    flex: 1 1 calc(33.333% - 1.5rem); /* 3 columns with spacing */
    background-color: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    min-width: 280px;
  }
  
  .about-box:hover {
    transform: translateY(-5px);
  }
  
  .about-box h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
    background: linear-gradient(90deg, dodgerblue, darkviolet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .about-box p,
  .about-box ul {
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
  }
  
  .about-box ul {
    padding-left: 1.5rem;
  }
  
  .about-box li {
    margin-bottom: 0.8rem;
  }
  
  /* Responsive: stack on smaller screens */
  @media screen and (max-width: 992px) {
    .about-box {
      flex: 1 1 100%;
    }
  }

  .team-section {
    padding: 1rem 2rem;
    text-align: center;
    color: #ffffff;
  }
  
  .team-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, dodgerblue, darkviolet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .team-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .team-card {
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 1.5rem;
    width: 250px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-card img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Or 0px for sharp corners */
    margin-bottom: 1rem;
  }
  
  .team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, dodgerblue, darkviolet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .team-card p {
    font-size: 1rem;
    color: #dddddd;
  }

.process-section {
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}

.process-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, dodgerblue, darkviolet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, dodgerblue, darkviolet);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, dodgerblue, darkviolet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-step p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 90%;
  }
}
