body {
  margin: 0;
  overflow-x: hidden;
}

.about-section {
  width: 100%;
  margin-top: 0;
}

.about-img {
  width: 100%;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ABOUT PARAGRAPH ===== */
/* Container must be relative for absolute positioning to work */
.about-hero {
  position: relative;
  width: 100%;
  font-family: 'Jost' !important;
}

.about-hero img {
  width: 100%;
  display: block;
}

/* Updated positioning for the text block */
/* Updated positioning to fill the red circle gap */
.about-hero-text {
  position: absolute;
  left: 28%;
  /* Reduced from 35% to fill the gap */
  top: 15%;
  /* Keeps it at the upper side */
  width: 67%;
  /* Increased to stretch to the right edge */

  /* Font & Styling */
  font-family: 'Jost', sans-serif !important;
  /* Overrides Prosto One */
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #cfcfcf;
  text-align: justify;
  /* Fills gaps from all sides */
  letter-spacing: 0.5px;
  transform: none;
}

/* Ensure the white section below doesn't have a gap */
/* White section layout */
.about-content {
  padding: 60px 5%;
  /* Reduced side padding to fill more width */
  background: #ffffff;
}

/* Force Jost font and justify text to fill all sides */
.about-para {
  font-family: 'Jost', sans-serif !important;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  max-width: 100%;
  /* Removed the 900px limit to fill the screen */
  margin: 0;
  text-align: justify;
  /* Removes gaps on the right side */
}



/* ===== RESPONSIVE: 992px ===== */
@media (max-width: 992px) {
  .about-section {
    margin-top: 90px;
  }

  .about-hero-text {
    font-size: 14px;
    line-height: 1.5;
    width: 60%;
    left: 35%;
    /* Move it right to avoid overlap with center content */
    top: 12%; /* Moved down from 5% to avoid banner text overlap */
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  }

  .about-para {
    font-size: 16px;
  }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  .about-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
  }

  .about-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .about-hero {
    position: relative !important;
    display: block !important;
    height: auto !important;
  }

  .about-hero-text {
    left: 38% !important; /* Clear vertical branding on the left */
    width: 58% !important; /* Stay in safe area on the right */
    /* padding: 7% 4%; */
    font-size: clamp(7px, 3.5vw, 9px) !important;
    line-height: 1.25;
    top: 5% !important; /* Move back up to clear bottom text */
  }

  .about-hero img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .about-content {
    padding: 40px 5%;
  }

  .about-para {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .about-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .about-hero-text {
    left: 38% !important; /* Clear vertical branding on the left */
    width: 58% !important; /* Stay in safe area on the right */
    /* padding: 7% 4%; */
    font-size: clamp(7px, 3.5vw, 9px) !important;
    line-height: 1.35;
    top: 5% !important; /* Move back up to clear bottom text */
  }

  .about-content {
    padding: 30px 4%;
  }

  .about-para {
    font-size: 14px;
    line-height: 1.6;
  }
}