/* Container holds left and right */
#about-us-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 30px;
  background-color: #ffffff;
  font-family: "Noto Sans", sans-serif;
}

/* Left side text */
#left-side {
  flex: 2 1 450px;
  max-width: 700px;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right side image */
#right-side {
  flex: 1 1 350px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#right-side img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

/*#right-side img:hover {
  transform: scale(1.05);
  cursor: pointer;
}*/

/* Titles */
.title-about {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle-about {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #555;
}

/* Paragraphs */
.description-about {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Khmer font for Khmer text */
.khmer-text {
  font-family: "Kantumruy Pro", sans-serif;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #about-us-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  #left-side,
  #right-side {
    max-width: 100%;
    flex: unset;
  }

  #right-side {
    margin-top: 30px;
  }
}
