:root{
  /* Your locked palette */
  --warm-white: #FDFCF8;
  --sage-mist:  #D3DDDB;
  --apricot:    #F5E8DC;

  --text:       #1F2933;
  --muted:      #2f3940;
  --text-muted: #2f3940;

  --radius-lg:  28px;
  --radius-md:  18px;
  --shadow:     0 22px 60px rgba(15,23,42,0.10);
  --line:       rgba(31,41,51,0.10);
  --divider:    rgba(31,41,51,0.10);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--warm-white);
  line-height:1.6;
  overflow-x: hidden;
}
img{max-width:100%; display:block}
a{color:inherit}
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

/* Type */
h1, h2 {
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
h1{font-weight:600}
h2{font-weight:500}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,232,220,0.40);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  /* Header height control */
  padding: 10px 0;
  min-height: 60px;
  gap: 18px;
}
.topbar .container{
  width: min(1320px, 98vw);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-self: start;
}

.brand__title {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.brand__logo{
    display:block;
    max-width: 142px;
    width: 100%;
    height: auto;
  }

.brand__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.2;
}


/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content:center;
}
.nav--primary{
  grid-column: 2;
}
.nav--lang{
  grid-column: 3;
  justify-content: flex-end;
  gap: 8px;
}
.nav--lang .nav__link{
  padding-left: 6px;
  padding-right: 6px;
}
.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(31,41,51,0.10);
  background: rgba(253,252,248,0.6);
  text-decoration: none;
}
.social-link:hover{
  background: rgba(211,221,219,0.35);
  color: var(--text);
}
.social-link svg{
  width: 18px;
  height: 18px;
  display: block;
}
.nav__link{
  text-decoration:none;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav--primary .nav__link{
  font-size: 1.1rem;
}
.nav__link:hover{
  background: rgba(211,221,219,0.35);
  color: var(--text);
}
.nav__link[aria-current="page"]{
  background: rgba(154,106,61,0.16);
  color: var(--text);
}
.nav__cta{
  margin-left: 4px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 8px 18px;
  min-height: 44px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn--primary{
  background: var(--sage-mist);
  color: var(--text);
  border-color: rgba(31,41,51,0.10);
}
.topbar .nav__cta{
  background: #c69a6d;
  color: #fff;
  border-color: #c69a6d;
}
.topbar .nav__cta:hover{
  background: #c69a6d;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(154,106,61,0.16);
}
.btn--primary:hover{filter: brightness(0.98)}
.btn--mail{
  background: #795127;
  color: #fff;
  border-color: #795127;
}
.btn--mail:hover{
  background: #795127;
  color: #fff;
}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border-color: rgba(31,41,51,0.18);
}
.btn--ghost:hover{background: rgba(245,232,220,0.55)}
.btn--wide{width: 100%}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(211,221,219,0.45);
  border: 1px solid rgba(31,41,51,0.10);
  color: var(--text);
}

/* Dividers */
.divider{
  border:0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* =========================
   HERO SECTION (RESET)
   ========================= */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  min-height: clamp(680px, 84vh, 900px);
  padding: 1.5rem clamp(1.25rem, 2.2vw, 2rem) 3.25rem;
  gap: clamp(2rem, 4vw, 4.5rem);
  background:
    radial-gradient(700px 320px at 16% 22%, rgba(245,232,220,0.45), rgba(245,232,220,0.00) 68%),
    radial-gradient(680px 320px at 82% 24%, rgba(211,221,219,0.32), rgba(211,221,219,0.00) 70%),
    linear-gradient(180deg, rgba(253,252,248,0.98), rgba(253,252,248,1));
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* LEFT: TEXT */
.hero-text {
  position: relative;
  z-index: 1;
  padding: clamp(2.2rem, 5vw, 4.6rem) 0 clamp(2rem, 4vw, 3.6rem) clamp(0.25rem, 1vw, 0.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  font-weight: 400;
}

.hero-description {
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RIGHT: IMAGE */
.hero-image {
  background-image: url("../img/hero-new.jpg"); 
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  width: min(100%, 820px);
  height: min(78vh, 840px);
  min-height: 560px;
  justify-self: end;
  align-self: stretch;
  border-radius: 34px 34px 26px 26px;
  border: 1px solid rgba(31,41,51,0.08);
  box-shadow:
    0 28px 70px rgba(15,23,42,0.14),
    0 8px 22px rgba(15,23,42,0.06);
  overflow: hidden;
  position: relative;
}
.hero-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(253,252,248,0.03), rgba(253,252,248,0.00) 30%, rgba(31,41,51,0.08)),
    radial-gradient(280px 200px at 78% 18%, rgba(253,252,248,0.18), rgba(253,252,248,0.00) 70%);
  pointer-events: none;
}

/* ================= HERO TYPOGRAPHY ================= */

.hero-question {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: inline-block;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 1.6rem;
  padding: 0.18em 0.26em;
  border-radius: 32px;
  text-align: center;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(26px);
  animation: fadeInUp 1.05s ease-out forwards;
}

.hero-question::before {
  content: "";
  position: absolute;
  inset: -0.4em -0.56em;
  z-index: -1;
  border-radius: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.54) 42%,
    rgba(255, 255, 255, 0.28) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(16px);
}

.hero-statement {
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(1.18rem, 1.95vw, 1.8rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  max-width: none;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  text-align: center;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(26px);
  animation: fadeInUp 1.1s ease-out 0.2s forwards;
}

.hero-cta {
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  max-width: 650px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;

  opacity: 0;
  transform: translateY(26px);
  animation: fadeInUp 1.1s ease-out 0.4s forwards;

  text-align: center;
}
.hero-cta a{
  text-decoration: none;
}
.hero-cta .btn{
  padding: 15px 28px;
  min-height: 54px;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-color: rgba(31,41,51,0.08);
  background: linear-gradient(180deg, rgba(216,226,224,0.95), rgba(211,221,219,0.92));
  box-shadow:
    0 12px 26px rgba(15,23,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.58);
}
.hero-cta .btn:hover{
  transform: translateY(-1px);
  box-shadow:
    0 16px 30px rgba(15,23,42,0.12),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

/* Stronger emphasis for pressure */
.pressure {
  font-weight: 800;
}

/* Elegant italic support */
.support {
  font-family: inherit;
  font-style: italic;
  font-weight: 500;
}

/* ================= ANIMATION ================= */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image panels with fade edges */
.image-panel{
  position: relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(253,252,248,0.6);
}
.image-panel img{
  width:100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Fade masks (works on modern browsers) */
.image-panel--fade-right img{
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
}

/* HERO portrait panel */
.hero__right .image-panel{
  min-height: 320px;
  background:
    radial-gradient(300px 180px at 70% 20%, rgba(245,232,220,0.85), rgba(245,232,220,0.00) 70%),
    rgba(253,252,248,0.75);
}

/* SECTIONS */
.section{
  padding: 46px 0;
  background: var(--warm-white);
}
.section--alt{
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(245,232,220,0.55), rgba(245,232,220,0.00) 65%),
    radial-gradient(900px 400px at 80% 30%, rgba(211,221,219,0.55), rgba(211,221,219,0.00) 65%),
    var(--warm-white);
}
.section__title{
  font-size: 1.9rem;
}
.section__text{
  color: var(--muted);
  max-width: 62ch;
  margin: 0.25rem 0 1rem;
  overflow-wrap: anywhere;
}

/* Split blocks */
.split{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items:center;
  gap: 26px;
}
.split--reverse{
  grid-template-columns: 1.05fr 0.95fr;
}
.split--reverse .split__media{order:2}
.split--reverse .split__content{order:1}

.split__media{
  min-height: 260px;
}
.split__media.image-panel{
  height: 300px;
}
.bullets{
  margin: 0.6rem 0 1.2rem 1.1rem;
  color: var(--text);
}
.bullets li{margin: 0.35rem 0}
.note{
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 10px;
}
.note--tight{margin-top: 12px}

/* About + Contact half/half with vertical divider */
.about-contact{
  padding: 52px 0;
}
.about-contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(253,252,248,0.65);
}
.about-contact__col{
  padding: 28px 26px;
  background: rgba(253,252,248,0.75);
}
.about-contact__col--divider{
  position: relative;
  background: rgba(253,252,248,0.65);
}
.about-contact__col--divider::before{
  content:"";
  position:absolute;
  left:0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

/* Contact card */
.contact-card{
  margin-top: 10px;
  padding: 16px 16px;
  border-radius: var(--radius-md);
  background: rgba(245,232,220,0.40);
  border: 1px solid rgba(31,41,51,0.10);
}
.contact-card__line{
  margin: 0.35rem 0;
  overflow-wrap: anywhere;
}
.contact-card a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-card .btn{
  text-decoration: none;
}

/* FAQ */
.faq-section{
  background:
    radial-gradient(900px 360px at 15% 18%, rgba(245,232,220,0.38), rgba(245,232,220,0.00) 62%),
    radial-gradient(900px 360px at 85% 22%, rgba(211,221,219,0.34), rgba(211,221,219,0.00) 62%),
    var(--warm-white);
}
.faq{
  display: grid;
  gap: 22px;
}
.faq__intro{
  max-width: 64ch;
}
.faq__list{
  display: grid;
  gap: 12px;
}
.faq__item{
  border-radius: 22px;
  border: 1px solid rgba(31,41,51,0.10);
  background: rgba(253,252,248,0.78);
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
  overflow: hidden;
}
.faq__item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.faq__item summary::-webkit-details-marker{
  display: none;
}
.faq__item summary::after{
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
}
.faq__item[open] summary::after{
  content: "-";
}
.faq__item p{
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 350px at 15% 20%, rgba(211,221,219,0.55), rgba(211,221,219,0.00) 60%),
    radial-gradient(900px 350px at 85% 20%, rgba(245,232,220,0.55), rgba(245,232,220,0.00) 60%),
    var(--warm-white);
  padding: 26px 0 30px;
}
.footer__inner{display:flex; flex-direction:column; gap: 14px;}
.footer__cols{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer__title{
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer__small{
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__links a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 500;
}
.footer__links a:hover{
  text-decoration: underline;
  color: var(--text);
}
.footer__legal{
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}
.footer__legal p{margin: 10px 0}

/* Responsive */
@media (max-width: 900px){
  .topbar{
    position: sticky;
  }
  .topbar__inner{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 12px 0 14px;
  }
  .brand{
    justify-self: center;
  }
  .nav{
    gap: 10px;
  }
  .nav--primary,
  .nav--lang{
    grid-column: auto;
    width: 100%;
    justify-content: center;
  }
  .nav--primary{
    max-width: 640px;
  }
  .nav__cta{margin-left: 0}
  .hero{grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.4rem;
        padding: 0.85rem 1rem 2.2rem;}
  .hero-text{
    padding: 1.4rem 0 1.2rem;
  }
  .hero-image{
             width: 100%; 
             aspect-ratio: 5 / 6;
             min-height: 0;
             height: auto;
             justify-self: stretch;
             border-radius: 26px;}
  .hero-question{
    font-size: 2rem;
    max-width: none;
    margin-top: 0.25rem;
    margin-bottom: 1.15rem;
  }
  .hero-statement{
    font-size: 1.12rem;
    max-width: none;
    margin-bottom: 1.45rem;
  }
  .hero-cta{
    margin-top: 0;
  }
  .hero-cta .btn{
    width: min(100%, 370px);
    min-height: 50px;
    font-size: 1.08rem;
  }
  .hero__inner{grid-template-columns: 1fr; }
  .hero__right .image-panel{min-height: 260px}
  .section{
    padding: 38px 0;
  }
  .section__title{
    font-size: 1.65rem;
    line-height: 1.2;
  }
  .split{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .split__media{
    min-height: 0;
  }
  .split__media.image-panel{
    height: 260px;
  }
  .about-contact{
    padding: 40px 0;
  }
  .about-contact__grid{
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .about-contact__col{
    padding: 24px 20px;
  }
  .about-contact__col--divider::before{display:none}
  .footer{
    padding: 22px 0 26px;
  }
  .footer__cols{
    flex-direction: column;
    gap: 12px;
  }
  .footer__links{
    gap: 10px 14px;
  }
  .page-hero{
    padding: 42px 0 34px;
  }
  .page-hero__title{
    font-size: 2rem;
  }
  .couns-title{
    font-size: 2rem;
    line-height: 1.15;
  }
  .couns-lead{
    margin-bottom: 1.5rem;
  }
  .couns-two-col{ grid-template-columns: 1fr; }
  .practical-box{
    padding: 16px;
  }
  .about-hero{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px){
  .container{
    width: min(1100px, calc(100vw - 28px));
  }
  .topbar__inner{
    gap: 10px;
    padding: 10px 0 12px;
  }
  .brand__logo{
    max-width: 94px;
  }
  .nav{
    gap: 8px;
  }
  .nav--primary{
    row-gap: 8px;
  }
  .nav--primary .nav__link{
    font-size: 1rem;
    padding: 8px 12px;
  }
  .nav--lang{
    gap: 4px;
  }
  .nav--lang .nav__link{
    font-size: 0.95rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .social-link{
    width: 44px;
    height: 44px;
  }
  .hero{
    padding: 0.5rem 0 1.55rem;
  }
  .hero-text{
    padding: 1rem 0 1.1rem;
  }
  .hero-question{
    font-size: 1.78rem;
    max-width: none;
  }
  .hero-statement{
    font-size: 1rem;
    max-width: none;
  }
  .hero-cta .btn{
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 14px 18px;
  }
  .hero-image{
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    background-position: center 12%;
  }
  .section{
    padding: 32px 0;
  }
  .section__title{
    font-size: 1.45rem;
  }
  .section__text{
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .split__media.image-panel{
    height: 220px;
  }
  .about-contact{
    padding: 34px 0;
  }
  .about-contact__col{
    padding: 20px 16px;
  }
  .contact-card{
    padding: 14px;
  }
  .faq{
    gap: 18px;
  }
  .faq__item summary{
    padding: 16px 46px 16px 16px;
    font-size: 1rem;
  }
  .faq__item summary::after{
    right: 16px;
  }
  .faq__item p{
    padding: 0 16px 16px;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .page-hero{
    padding: 34px 0 28px;
  }
  .page-hero__title,
  .couns-title{
    font-size: 1.8rem;
  }
  .page-hero__lead,
  .couns-lead{
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .footer{
    padding: 20px 0 24px;
  }
  .footer__small,
  .footer__legal{
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* Counseling page hero */
.page-hero {
  background:
    radial-gradient(900px 450px at 10% 30%, rgba(245,232,220,0.65), rgba(245,232,220,0.00) 60%),
    radial-gradient(900px 450px at 90% 30%, rgba(211,221,219,0.65), rgba(211,221,219,0.00) 60%),
    var(--warm-white);
  padding: 54px 0 46px;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.page-hero__title {
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin: 0 0 0.6rem 0;
}

.page-hero__lead {
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

.page-hero__image {
  min-height: 260px;
}

@media (max-width: 900px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
  }
}

/* Centered contact section (Counseling page) */
.contact-centered {
  max-width: 560px;   /* same visual size as before */
  margin: 0 auto;     /* centers horizontally */
}

/* Counseling page layout helpers */
.couns-title{
  text-align:center;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  margin: 0 0 0.75rem 0;
}

.couns-lead{
  text-align:center;
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto 2rem;
}

.couns-block{
  margin-top: 1rem;
}

.couns-two-col{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.practical-box{
  border-radius: var(--radius-lg);
  background: rgba(245,232,220,0.45);
  border: 1px solid rgba(31,41,51,0.10);
  padding: 18px 18px;
}

.practical-box__title{
  margin: 0 0 0.75rem 0;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
}

.practical-box__list{
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
}

@media (max-width: 900px){
  .couns-two-col{ grid-template-columns: 1fr; }
}

/* ABOUT PAGE */

.about-hero{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items:center;
}

.about-hero__image img{
  width:100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.couns-hero__image img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

}

