/* Apple-inspired clean design with original purple color */

.about-container {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: #1d1d1f;
  background-color: #fff;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #bf5af2; /* Original purple color */
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #bf5af2; /* Original purple color */
  padding-bottom: 0.4rem;
}

p {
  line-height: 1.65;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

a {
  color: #bf5af2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease-in-out;
}

a:hover,
a:focus {
  border-bottom: 1px solid #bf5af2;
}
