.about-hero {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}

.about-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-content {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2.5rem 1.5rem;
}

.about-content h2 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.about-table th, .about-table td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.about-table th {
  color: var(--primary-color);
  width: 30%;
  font-weight: 600;
  background: #f7f7f7;
}

@media (max-width: 600px) {
  .about-content {
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
  }
  .about-hero {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .about-hero h1 {
    font-size: 1.2rem;
  }
  .about-content h2 {
    font-size: 0.95rem;
  }
  .about-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .about-table table {
    min-width: 400px;
  }
  .about-table th, .about-table td {
    font-size: 0.88rem;
    padding: 0.5rem 0.3rem;
    word-break: break-all;
    white-space: pre-line;
  }
} 