.about-container {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  min-height: 100vh;
}

.hero-section {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-size: 16px;
  font-weight: 600;
}

.mission-section {
  padding: 80px 0;
  background: white;
  border-radius: 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark);
}

.mission-text p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.mission-image {
  position: relative;
  height: 400px;
}

.floating-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.3);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.element-2 {
  bottom: 0;
  right: 0;
  animation-delay: 2s;
}

.values-section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-subtitle {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  padding: 40px 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4361ee, #7209b7);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.value-card p {
  color: var(--gray);
  line-height: 1.7;
}

.team-section {
  padding: 80px 0;
  background: white;
  border-radius: 40px;
  margin-top: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: var(--light);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid white;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: 700;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-member p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.timeline-section {
  padding: 80px 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4361ee, #7209b7);
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
  width: 50%;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 40px;
  padding-right: 0;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: auto;
  left: -10px;
}

.timeline-dot {
  position: absolute;
  right: -13px;
  top: 30px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -13px;
}

.timeline-year {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.timeline-description {
  color: var(--gray);
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #4361ee, #7209b7);
  border-radius: 40px;
  margin-top: 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .mission-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 70px;
  }

  .timeline-dot {
    left: 20px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
  }

  .timeline-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .mission-text h2 {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .stat-number {
    font-size: 36px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
