.about-body {
  background: #1a1a1a;
}

.bg-office {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.25;
}

.about-page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 15vh 5% 40px;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  gap: 0;
}

.founder-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  width: 18%;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid rgba(3, 152, 158, 0.3);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
}

.founder-card:hover {
  border-color: #03989e;
  transform: translateY(-5px);
}

.profile-pic {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1.3;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid rgba(3, 152, 158, 0.5);
}

.founder-info h2 {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  color: #fff;
}

.position {
  color: #03989e;
  font-weight: 700;
  margin-bottom: 15px;
}

.social-links img {
  width: 28px;
  transition: 0.3s;
}

.social-links img:hover {
  filter: brightness(1.2);
}

.bio-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  border-left: 4px solid #03989e;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin-right: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  order: 1;
}

.bio-box.active {
  max-width: 80%;
  max-height: 2000px;
  opacity: 1;
  padding: 40px;
  margin-right: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-heading {
  color: #03989e;
  margin-bottom: 20px;
  font-size: 2rem;
}

.bio-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #eee;
}

.announcement-section {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.announcement-text {
  font-size: 1.1rem;
  color: #03989e;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid rgba(3, 152, 158, 0.2);
  display: inline-block;
}

.nav-link-active {
  color: #03989e !important;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .bio-box.active {
    order: 2;
    margin-right: 0;
    max-width: 90%;
  }

  .founder-card {
    order: 1;
    width: min(280px, 82vw);
  }
}