/* Styles for the About section */
.about-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 24px;
  background: #faf6f1;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.about-section h1 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #20323a;
  font-size: 32px;
  text-align: center;
}

.about-content {
  line-height: 1.7;
  color: #333;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 16px;
}

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

@media (max-width: 700px) {
  .about-section {
    margin: 20px 12px;
    padding: 24px 16px;
  }

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

  .about-content p {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
