.about-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.glass-card {
  background: rgba(40, 40, 60, 0.247);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(224, 89, 127, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 89, 127, 0.4);
}

.advantage-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-pink);
  margin-bottom: 1.5rem;
}

.glass-card h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--color-pink);
  font-weight: 500;
}

.team-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.team-section h4 {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.team-card {
  background: var(--color-section-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
  width: 420px;
}

.team-card:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 120px;
  height: 270px;
  background-size: cover;
  background-position: center;
}

.member-info {
  padding: 1.5rem;
  flex: 1;
}

.member-info h4 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  text-align: left;
}

.member-info .role {
  color: var(--color-pink);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--color-light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--color-gray);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-pink);
}

.card-content {
  color: var(--color-light-gray);
  line-height: 1.7;
}

.bio {
  color: var(--color-light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: monospace;
}

.thanks-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.thanks-people {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1rem;
}

.thanks-people-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  background: var(--color-section-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 420px;
}

.thanks-people-content:hover {
  transform: translateY(-5px);
}

.thanks-icon {
  width: 75px;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.thanks-name {
  font-size: 1.1rem;
  color: var(--color-secondary);
  font-weight: 700;
}

.thanks-info {
  width: 300px;
  font-family: monospace;
  color: var(--color-light-gray);
  line-height: 1.6;
}


@media (max-width: 768px) {
  .about-container {
    margin: 1rem auto;
    padding: 0.5rem;
  }

  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .advantage-title {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .glass-card h3 {
    font-size: 1.2rem;
  }

  .team-section {
    margin-top: 2rem;
    padding: 1rem 0;
  }

  .team-grid {
    margin: 0 auto 1rem;
  }

  .team-card {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .member-photo {
    width: 100%;
    height: 200px;
  }

  .member-info {
    padding: 1rem;
  }

  .member-info h4 {
    text-align: center;
    font-size: 1.2rem;
  }

  .member-info .role {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .thanks-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .thanks-people-content {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .thanks-icon {
    width: 100%;
    height: 120px;
  }

  .thanks-info {
    width: 100%;
    padding: 0 1rem 1rem;
  }

  .bio {
    font-size: 0.9rem;
  }

  .card-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.6rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .glass-card {
    padding: 1rem;
  }

  .team-card {
    max-width: 280px;
  }

  .member-info {
    padding: 0.8rem;
  }

  .thanks-people-content {
    max-width: 280px;
  }

  .thanks-name {
    font-size: 1rem;
  }

  .thanks-info {
    font-size: 0.8rem;
  }
}