font.tablebodytext {
	display: none;
}
.about-main {
  background: #f9f9fa;
  padding: 3rem 0.5rem;
}

.about-main__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1200px) {
  .about-main__text-wrapper {
    grid-template-columns: 1fr 1fr;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
  }
}

.about-main__text-wrapper p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
}

.about-main__text-wrapper p strong {
  color: #5e2ef7;
}

.about-main__detail-btn, .feedback__leave-btn, .capture__send-btn {
  justify-self: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  color: white;
  margin-top: 1rem;
  display: block;
  align-items: center;;
  transition: transform .2s, box-shadow .2s;
}

.about-main__detail-btn:hover, .feedback__leave-btn:hover, .capture__send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(94,46,247,0.3);
}

.about-main__detail-btn::after, .feedback__leave-btn:after,  .capture__send-btn:after {
  content: '→';
  display: inline-block;
}