.about-container {
  min-height: calc(100vh - 200px);
}

.about-container .content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-container .image-section {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.about-container .image-section .placeholder-image {
  height: 500px;
}

.about-container .text-section {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-container .text-section .section-title {
  font-size: 1.8rem;
  color: var(--color-grey-light);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.about-container .text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-grey-light);
}

@media (max-width: 768px) {
  .about-container .image-section .placeholder-image {
    height: 300px;
  }
}

