/* about.css */

.about-section {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
  color: #333;
}

.about-section h1 {
  font-size: 2rem;
  color: #264653;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-section h2 {
  color: #2a9d8f;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}

.about-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  color: #444;
}

.about-section ul li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 600px) {
  .about-section {
    margin: 1rem 1rem 3rem;
  }
}
