.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2rem;
}

.about-image-container {
  position: relative;
  overflow: hidden;
}

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

#about1 {
  width: 100%;
  height: 492px;
}

#about2,
#about3 {
  width: 100%;
  height: 234px;
}

.right-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content {
  display: flex;
  gap: 186px;
}

.about-content h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.about-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }

  .about-images {
    display: flex;
    flex-direction: column;
  }

  .right-images {
    flex-direction: column;
  }

  #about1 {
    height: 359px;
  }

  #about2,
  #about3 {
    height: 359px;
  }

  .about-content {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  #about1 {
    height: 186px;
  }

  #about2,
  #about3 {
    height: 186px;
  }

  .about-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .about-content p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
  }
}
