.about-section {
  padding: 2.5rem 0;
  background: var(--clr-white);
}

#businessName {
  color: var(--clr-primary-light);
  font-size: 18px;
  font-weight: bold;
}

.about-section .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 1.4899rem + 0.0462vw, 1.75rem);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-align: justify;
}

.about-content p + p {
  margin-top: 0.9rem;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}
