.page-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  flex: 1;
  width: 100%;
}

.page-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--primary-color);
  text-align: center;
}

.about-section {
  margin-bottom: 60px;
  text-align: center;
}

.about-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.section-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 40px auto 0;
  display: block;
}

.section-svg {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: 40px auto 0;
  display: block;
  border-radius: 12px;
}

.team-illustration,
.tech-illustration,
.community-illustration,
.achievements-illustration {
  margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-content {
    padding: 40px 24px;
  }

  .page-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .about-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .about-section p {
    font-size: 15px;
  }

  .section-image {
    height: 250px;
    margin: 30px auto 0;
  }

  .section-svg {
    height: 200px;
    margin: 30px auto 0;
  }
}

@media (max-width: 480px) {
  .page-content {
    padding: 30px 16px;
  }

  .page-content h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-section {
    margin-bottom: 40px;
  }

  .about-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .about-section p {
    font-size: 14px;
  }

  .section-image {
    height: 200px;
    margin: 20px auto 0;
  }

  .section-svg {
    height: 150px;
    margin: 20px auto 0;
  }
}
