/*.about {
  position: relative;
  display: grid;
  grid-template-columns: 38rem 1fr;
  gap: 60px;
  padding: 20px 70px;
  align-items: start;
}*/

/*Gemini Code of only .about class*/
.about {
  width: 100%;
  max-width: 1200px; /* Keeps content contained regardless of screen width/zoom */
  margin: 0 auto;    /* Centers the container horizontally */
  padding: 2rem 1rem;
  
  /* Flex layout to keep image and text side-by-side */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  box-sizing: border-box;
}

.about__image {
  border-radius: 0 160px 0 0;
  overflow: hidden;
  height: 340px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*
.about__content .eyebrow {
  font-size: 15px; /* New 2nd Update*
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 1rem; /* New 2nd Update*
  margin-right: 2rem; /* New 2nd Update*
}

.about__content .headline {
  font-size: 37px;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  margin-left: 2.8rem;  /* New 2nd Update*
  padding-left: -4rem;  /* New 2nd Update*
  max-width: max-content; /* New 2nd Update*
}
/* .about__content{
  text-align: end;
} *

.about__content .subtext {
  font-size: 24px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 540px;
  margin-bottom: 26px;
  padding-left: 2rem;
  margin-left: -1rem; /* New 2nd Update*
}

.about__content .cta {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  margin-left: 12rem; /* New 2nd Update*
    margin-top: 1rem; /* New 2nd Update*
}

.about__content .cta:hover {
  background: #241db8;
}*/
/*Gemini Code from eyebrow to subtext class for zoom issue*/

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers eyebrow, headline, subtext, and button */
  text-align: center;   /* Centers text lines inside */
}

.about__content .eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.about__content .headline {
  font-size: 37px;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.about__content .subtext {
  font-size: 24px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 540px;
  margin-bottom: 26px;
}

.about__content .cta {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  margin-top: 1rem;
}

.about__content .cta:hover {
  background: #241db8;
}
/*888888888888888*****************************************************************************/
.about__strip {
  grid-column: 2 / 3;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.about__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding-left: 8rem;
}

.scroll-top {
  position: absolute;
  right: 40px;
  bottom: 10px;
  background: #2f27ce;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.scroll-top:hover {
  background: #241db8;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .about__image {
    height: 280px;
    border-radius: 0 100px 0 0;
  }

  .about__strip {
    grid-column: 1 / 2;
  }

.about__content .headline {
    font-size: 26px;
    margin-right: 16rem;
margin-left: 6rem;
  }
  .about__content .eyebrow {
    margin-right: 9rem;
  }

  .about__content .subtext {
    padding-left: 16rem;
    margin-left: -24rem;
  }

.about__content .cta {
margin-left: -8rem;
}

}
  
.about__content {
  margin-left: 0px;
}

.about {
  justify-content: flex-start;
  margin-left: 0px;
  padding-left: 0px;
  max-width: none;
}
