.left-text-section.full-width {
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.left-text-section.centered {
  width: 100%;
  max-width: var(--site-max-width, 1400px);
  margin: 0 auto;
}

.left-text-section.alt {
  flex-direction: row-reverse;
}

.left-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 60px 40px;
  background-color: #f8f6f1;
  border-radius: 24px;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06); */
  min-height: 600px;
  text-align: left;
  box-sizing: border-box;
}

.left-text-section .text-container {
  flex: 0 1 calc(60% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}


.left-text-section .separator2 {
  width: 40px;
  height: 4px;
  background-color: var(--accent-color, #ffc83d); /* bright yellow */
  margin: 20px 0;
  border-radius: 2px;
}

.left-text-section p.center-text-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
  color: #355d5b;
}

.left-text-section .image-container {
  flex: 0 1 calc(40% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.left-text-section .image-container img {
  width: auto;
  height: 80%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  /* border-radius: 20px; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-height: 100%;
  max-width: 100%;
}


.left-text-section .contact-button:hover {
  background-color: transparent;
  color: var(--accent-color, #ffc83d);
  border-color:  var(--accent-color, #ffc83d);
}

/* Optional: add arrow icon inside button if using an <a> or <button> element with an icon */
.left-text-section .contact-button::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.left-text-section .contact-button:hover::after {
  transform: translateX(5px);
}


@media (max-width: 900px) {
  .left-text-section {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 28px 8px;
    min-height: unset;
    max-width: 96% !important;
    margin: 0 auto;
  }
  .left-text-section .text-container {
    flex: none;
    max-width: 100%;
    padding: 10px;
    align-items: flex-start;
    text-align: left;
     font-size: 13px !important;
  }
  .left-text-section .image-container {
    flex: none;
    width: 100%;
    height: auto;
    justify-content: center;
    margin: 0;
    min-height: unset;
    max-width: 100%;
  }
  .left-text-section .image-container img {
    width: 100%;
    max-width: 320px;
    min-width: 180px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: block;
  }
  .left-text-section .separator2 {
    margin: 16px 0;
  }
}

@media (max-width: 600px) {
  .left-text-section {
    padding: 16px 2vw;
    gap: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);

  }
  .left-text-section .text-container {
    font-size: 13px !important;
    gap: 12px;
  }
  .left-text-section .image-container img {
    max-width: 92vw;
    min-width: 120px;
    border-radius: 14px;
  }
  .left-text-section .contact-button {
    font-size: 16px;
    padding: 12px 20px;
  }
}
