.about-section {
  padding: var(--padding);
  background: var(--section-white-bg);
}

.about-section .about-container {
  max-width: var(--container-width);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

/* LEFT IMAGE */
.about-image {
  flex: 0 0 40%;
  max-width: 60%;
}

.about-content {
  flex: 0 0 60%;
  max-width: 60%;
}

.about-image img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-family: var(--site-font);
  font-size: 2.765rem;
  color: var(--heading-dark);
  margin-bottom: 20px;
}

.about-content p {
  font-family: var(--site-font);
  font-size: 21px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .about-section .about-container {
    flex-direction: column;
  }

  .about-image img {
    height: auto;
  }

  .about-content {
    text-align: center;
    max-width: 100%;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-content h2 {
    margin-top: 0;
  }
}