/* about.css */
.about-section {
  padding: 60px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 50px;
}

.about-text p {
  color: #a0a0b0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text strong {
  color: #e0e0e8;
}

/* Team */
.team-section {
  padding: 0 40px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #8888a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.team-card {
  background: rgba(20, 22, 32, 0.8);
  border: 1px solid rgba(78, 140, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  min-width: 200px;
  transition: 0.35s;
}

.team-card:hover {
  border-color: rgba(91, 155, 255, 0.25);
  box-shadow: 0 8px 30px rgba(91, 155, 255, 0.1);
}

.team-card .avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #5b9bff, #7c4dff);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.team-card h3 {
  color: #e0e0e8;
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: #5b9bff;
  font-size: 0.85rem;
}

/* Timeline */
.timeline {
  margin-top: 40px;
}

.timeline-item {
  padding: 20px 0 20px 28px;
  border-left: 2px solid rgba(91, 155, 255, 0.2);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5b9bff;
}

.timeline-item .year {
  color: #5b9bff;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}

.timeline-item p {
  color: #8888a0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px 60px;
  }
  .team-section {
    padding: 0 20px 60px;
  }
}
