.about-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 0;
}

.about-page-content h3 {
  display: inline-block;
  font-size: 2.2rem;
  color: var(--peach-dark);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--teal);
}

.about-page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.centered-items {
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  top: 30%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .about-page-content {
    display: flex;
    flex-direction: column;
  }
}
