.about {
  padding: 64px 40px;
}
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.about__inner h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: capitalize;
}
.about__content {
  font-size: 20px;
  line-height: 1.4;
}
.about__content h3,
.about__content h4 {
  font-size: 24px;
  margin: 16px 0 8px;
}
.about__content p {
  margin-bottom: 16px;
}
.about__content strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .about {
    padding: 40px 20px;
  }
  .about__inner h2 {
    font-size: 24px;
  }
  .about__content {
    font-size: 16px;
  }
}
