.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light);
}

.about-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  background: rgba(37, 37, 37, 0.7);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 3rem;
}

.about-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.team-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-light);
  text-align: center;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(37, 37, 37, 0.7);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.3);
}

.team-member h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--light);
}

.team-member p.position {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-member a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary-light);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.team-member a:hover {
  background: rgba(108, 99, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-container {
    padding: 3rem 1.5rem;
  }
  
  .about-header h1 {
    font-size: 2rem;
  }
  
  .about-content {
    padding: 2rem;
  }

  .team-members {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 2rem 1rem;
  }
  
  .about-content {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem;
  }
}