.why-choose {
  display: grid;
  grid-template-columns: 32% 1fr;
}

/*.why-choose__intro {
   padding: 60px 21px 40px 70px; }*/


.why-choose__intro .eyebrow {
  font-size: 16px;
  font-weight: 799;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 16px;
margin-left: 11rem;

}

.why-choose__intro .headline {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  margin-bottom: 26px;
margin-left: 14px;
}

.why-choose__image {
  border-radius: 0 50px 0 0;
  overflow: hidden;
  height: 220px;
}

.why-choose__image {
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.why-choose__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
  margin-left: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}

.why-choose__intro {
  display: flex;
  flex-direction: column;
}

.why-choose__panel {
  background: #eceafc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 60px;
  gap: 50px 60px;
  padding-left: 2rem;
  margin-left: 5.5rem;
  padding-top: 2rem;
}

.why-item__number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4338ca;
  margin-bottom: 14px;
}

.why-item h3 {
  font-size: 2rem;;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 320px;
}

/*@media (max-width: 900px) {
/*  .why-choose {
    grid-template-columns: 1fr;
  }

  .why-choose__intro {
    padding: 40px 30px 20px;
  }

  .why-choose__panel {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    margin-left:0rem;
  }

  .why-choose__image {
    height: 200px;
  }

  .why-choose__intro .headline {
    font-size: 26px;
  }*/
/*//////////////////////////////////////Gemini Old Code Which Unstructure the Code ///////////////////////////*/
/* Section Container *
.about {
  display: grid;
  grid-template-columns: 1fr; /* Single full-width column *
  justify-items: center;      /* Centers grid elements horizontally *
  text-align: center;         /* Centers text alignment *
  gap: 32px;                  /* Space between content and image *
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* 1. Content Block (Forced to Row 1 - Top) *
.about__content {
  grid-row: 1;                /* Places text content above the image *
  display: flex;
  flex-direction: column;
  align-items: center;        /* Centers button and headings *
  text-align: center;
  max-width: 800px;           /* Keeps text line-length optimal *
  width: 100%;
}

.about__content .eyebrow {
  margin-bottom: 8px;
}

.about__content .headline {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;
}

.about__content .subtext {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

/* 2. Image Block (Forced to Row 2 - Bottom) *
.about__image {
  grid-row: 2;                /* Places image below the content *
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Overrides the inline 'width="6rem"' attribute on the image *
.about__image img {
  width: 100%;
  max-width: 700px;           /* Controls maximum image width *
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
}///////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 900px) {
  /* 1. Main Section Container - Full width single column */
  .why-choose {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* 2. Top White Intro Section - Locked & Centered */
  .why-choose__intro {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centers heading, eyebrow, and image container */
    text-align: center;      /* Centers text lines */
    padding: 40px 35px 20px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .why-choose__intro .eyebrow {
    text-align: center;
    margin-bottom: 8px;
margin-left: 4rem;
  }

  .why-choose__intro .headline {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
  }

  .why-choose__image {
    width: 100%;
    max-width: 450px;        /* Limits image width for clean mobile proportions */
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .why-choose__image img.whychoose {
    width: 100%;
    height: auto;
    border-radius: 12px;
object-fit: contain;
  }

  /* 3. Bottom Lavender Panel - Stretched 100% with No Left Gap */
  .why-choose__panel {
    display: grid;
    grid-template-columns: 1fr; /* Forces 1 item per row (fixes 01 and 02 side-by-side overflow) */
    gap: 30px;
    padding: 40px 24px;
    margin: 0;                  /* REMOVES the left-side gap */
    width: 100%;
    box-sizing: border-box;
  }

  .why-item {
    width: 100%;
    text-align: left;
  }

  .why-item__number {
    font-size: 22px;
    font-weight: bold;
    color: #4f46e5;
  }

  .why-item h3 {
    font-size: 20px;
    margin: 8px 0;
  }

  .why-item p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }
}
