/* css/about.css */

/* Import the font at the top of the file (less performant than linking in <head>) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.about-section {
  background-color: #fff;
  padding: 4rem 0;
  color: #333;
  font-family: 'Inter', sans-serif; 
}

.about-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
