/* =========================================================
   EBN HAYAN — RETINAL DISEASES / RETINA SPECIALIST
========================================================= */

:root {
    --eh-green: #0c3128;
    --eh-green-2: #08382f;
    --eh-teal: #087d70;
    --eh-teal-light: #dcece7;
    --eh-cream: #f3f1ec;
    --eh-white: #ffffff;
    --eh-text: #12201c;
    --eh-muted: #5c6864;
    --eh-gold: #c99b35;
    --eh-border: rgba(12,49,40,.14);
    --eh-radius: 42px;
}


/* =========================================================
   RESET
========================================================= */

.eh-retina-page,
.eh-retina-page * {
    font-family: var(--Font);
    box-sizing: border-box;
}

.eh-retina-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--eh-text);
    overflow: hidden;
    direction: rtl;
}

.eh-retina-page img {
    max-width: 100%;
}

.eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.eh-retina-page a {
    text-decoration: none;
}


/* =========================================================
   BUTTONS
========================================================= */

.eh-retina-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 54px;
    padding: 7px 8px 7px 22px;

    border-radius: 100px;

    font-family: var(--Font-2);
    font-size: 13px;
    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.eh-retina-btn:hover {
    transform: translateY(-2px);
}

.eh-retina-btn span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.eh-retina-btn svg {
    width: 18px;
    height: 18px;
}

.eh-retina-btn-primary {
    color: #fff;
    background: var(--eh-teal);
}

.eh-retina-btn-primary span {
    background: rgba(255,255,255,.15);
}

.eh-retina-btn-light {
    color: var(--eh-green);
    background: var(--eh-cream);
}

.eh-retina-btn-light span {
    background: var(--eh-green);
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.eh-retina-hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 90px 0 80px;

    background: var(--eh-green);
    color: #fff;

    isolation: isolate;
}

.eh-retina-hero::before {
    content: "";
    position: absolute;

    width: 620px;
    height: 620px;

    left: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(10,126,112,.14);

    z-index: -1;
}

.eh-retina-hero::after {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    left: 30%;
    bottom: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    z-index: -1;
}

.eh-retina-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(440px, .85fr);
    align-items: center;
    gap: 70px;
}

.eh-retina-hero-content {
    position: relative;
    z-index: 3;
}

.eh-retina-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 100px;

    color: #b9ddd5;
    font-family: var(--Font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
}

.eh-retina-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #c99b35;
}

.eh-retina-hero h1 {
    max-width: 700px;

    margin: 27px 0 24px;

    color: #fff;

    font-family: var(--Font-2);
    font-size: clamp(44px, 5.1vw, 64px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.035em;
}

.eh-retina-hero h1 em {
    color: #45a99a;
    font-style: normal;
}

.eh-retina-hero-text {
    max-width: 620px;

    margin: 0 0 32px;

    color: rgba(255,255,255,.76);

    font-size: 17px;
    line-height: 1.9;
}

.eh-retina-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eh-retina-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;

    margin-top: 42px;

    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.eh-retina-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eh-retina-stars {
    color: #d2a13b;
    letter-spacing: 2px;
}

.eh-retina-location {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: var(--Font);
}

.eh-retina-location svg {
    width: 17px;
}


/* =========================================================
   RETINA DOCTOR / IMAGE
========================================================= */

.eh-retina-doctor-wrap {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.eh-retina-doctor-shape {
    position: absolute;

    width: min(500px, 100%);
    height: 555px;

    left: 10px;
    bottom: 0;

    overflow: hidden;

    border-radius:
        190px
        45px
        190px
        45px;

    background:
        linear-gradient(
            145deg,
            #dceae5 0%,
            #a7c9c0 100%
        );
}

.eh-retina-doctor-shape::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(12,49,40,.25)
        );
}

.eh-retina-doctor-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 590px;

    object-fit: cover;
    object-position: top;

    filter: saturate(.92);
}


/* =========================================================
   HERO BADGE
========================================================= */

.eh-retina-doctor-badge {
    position: absolute;
    z-index: 5;

    right: -25px;
    bottom: 70px;

    width: 215px;

    padding: 20px;

    border-radius: 28px;

    background: rgba(243,241,236,.96);
    color: var(--eh-green);

    box-shadow: 0 25px 60px rgba(0,0,0,.18);

    backdrop-filter: blur(12px);
}

.eh-retina-doctor-badge strong {
    display: block;

    margin-bottom: 5px;

    font-family: var(--Font);
    font-size: 26px;
    line-height: 1;
}

.eh-retina-doctor-badge small {
    display: block;

    color: var(--eh-muted);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   STATS
========================================================= */

.eh-retina-stats {
    position: relative;
    z-index: 5;

    background: var(--eh-cream);
}

.eh-retina-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-right: 1px solid var(--eh-border);
}

.eh-retina-stat {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 28px 30px;

    border-left: 1px solid var(--eh-border);
}

.eh-retina-stat strong {
    margin-bottom: 8px;

    color: var(--eh-green);

    font-family: var(--Font-2);
    font-size: 27px;
    font-weight: 500;
}

.eh-retina-stat span {
    color: var(--eh-muted);

    font-family: var(--Font);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   INTRO
========================================================= */

.eh-retina-intro {
    padding: 125px 0;

    background: var(--eh-cream);
}

.eh-retina-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 100px;
    align-items: center;
}

.eh-retina-image-card {
    position: relative;

    min-height: 580px;

    overflow: hidden;

    border-radius:
        45px
        180px
        45px
        180px;

    background: #dce7e3;
}

.eh-retina-image-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(12,49,40,.22)
        );
}

.eh-retina-image-card img {
    width: 100%;
    height: 100%;

    min-height: 580px;

    object-fit: cover;
    object-position: center;
}

.eh-retina-section-label {
    display: inline-block;

    margin-bottom: 22px;

    padding: 9px 15px;

    border: 1px solid rgba(8,125,112,.25);
    border-radius: 100px;

    color: var(--eh-teal);

    font-family: var(--Font);
    font-size: 10px;
    font-weight: 700;
}

.eh-retina-section-title {
    margin: 30px 0 26px;

    color: var(--eh-green);

    font-family: var(--Font);
    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.03em;
}

.eh-retina-section-title em {
    color: var(--eh-teal);
    font-style: normal;
}

.eh-retina-copy {
    color: #3f4946;

    font-size: 16px;
    line-height: 1.9;
}

.eh-retina-copy + .eh-retina-copy {
    margin-top: 20px;
}

.eh-retina-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin: 32px 0;
}

.eh-retina-credential {
    padding: 18px;

    border: 1px solid var(--eh-border);
    border-radius: 22px;

    background: rgba(255,255,255,.42);
}

.eh-retina-credential strong {
    display: block;

    margin-bottom: 6px;

    color: var(--eh-green);

    font-family: var(--Font);
    font-size: 13px;
}

.eh-retina-credential span {
    display: block;

    color: var(--eh-muted);

    font-family: var(--Font-2);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   EXPERTISE
========================================================= */

.eh-retina-expertise {
    padding: 125px 0;

    background: #fff;
}

.eh-retina-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.eh-retina-heading-row .eh-retina-copy {
    max-width: 500px;
}

.eh-retina-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.eh-retina-service {
    position: relative;

    min-height: 300px;

    padding: 34px;

    overflow: hidden;

    border-radius: 34px;

    background: var(--eh-cream);

    transition:
        transform .3s ease,
        background .3s ease;
}

.eh-retina-service:hover {
    transform: translateY(-5px);
    background: #e8efec;
}

.eh-retina-service-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 55px;

    border-radius: 50%;

    background: var(--eh-green);
    color: #fff;

    font-size: 11px;
}

.eh-retina-service h3 {
    max-width: 390px;

    margin: 0 0 12px;

    color: var(--eh-green);

    font-family: var(--Font-2);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
}

.eh-retina-service p {
    max-width: 430px;

    margin: 0;

    color: var(--eh-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONDITIONS
========================================================= */

.eh-retina-conditions {
    padding: 120px 0;

    background: var(--eh-green);
    color: #fff;
}

.eh-retina-conditions-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 100px;
    align-items: start;
}

.eh-retina-conditions .eh-retina-section-title {
    color: #fff;
}

.eh-retina-conditions .eh-retina-copy {
    color: rgba(255,255,255,.68);
}

.eh-retina-condition-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.14);
}

.eh-retina-condition {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 85px;

    padding: 15px 5px;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.eh-retina-condition-number {
    color: #49a899;

    font-size: 11px;
}

.eh-retina-condition span:last-child {
    color: rgba(255,255,255,.88);

    font-family: var(--Font-2);
    font-size: 14px;
}

.eh-retina-why {
    padding: 125px 0;
    background: var(--eh-cream);
  }
  .eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }
  .eh-retinas-page, .eh-retina-page * {
    font-family: var(--Font);
    box-sizing: border-box;
  }
  .eh-retina-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .eh-retina-page, .eh-caries-page * {
    font-family: var(--Font);
    box-sizing: border-box;
  }
  .eh-retina-why-list {
    display: grid;
    gap: 12px;
  }
  .eh-retina-why-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 23px;
    border-radius: 25px;
    background: rgba(255,255,255,.62);
  }
  .eh-retina-why-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--eh-green);
    color: #fff;
  }
  .eh-retina-why-icon svg {
    width: 18px;
  }
  .eh-retina-why-item h3 {
    margin: 0 0 6px;
    color: var(--eh-green);
    font-size: 15px;
  }
  .eh-retina-why-item p {
    margin: 0;
    color: var(--eh-muted);
    font-size: 13px;
    line-height: 1.7;
  }

  .eh-retina-insurance {
    padding: 80px 0;
    background: #fff;
  }
  
  .eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }
  .eh-retina-insurance-inner {
    padding: 55px;
    border-radius: 40px;
    background: var(--eh-green);
    color: #fff;
    text-align: center;
  }
  .eh-retina-insurance-inner h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--Font-2);
    font-size: 38px;
    font-weight: 500;
  }
  .eh-retina-insurance-inner p {
    max-width: 650px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
  }
  .eh-retina-insurance-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .eh-retina-insurance-list span {
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
  }


  .eh-retina-faq {
    padding: 125px 0;
    background: #fff;
  }
  .eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }

  .eh-retina-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 90px;
  }

  .eh-retina-section-label {
    display: inline-block;
    font-family: var(--Font);
    margin-bottom: 22px;
    padding: 9px 15px;
    border: 1px solid rgba(8,125,112,.25);
    border-radius: 100px;
    color: var(--eh-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .eh-retina-section-title {
    margin: 0 0 26px;
    color: var(--eh-green);
    font-family: var(--Font);
    font-size: clamp(32px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.03em;
  }

  .eh-retina-copy {
    color: #3f4946;
    font-size: 16px;
    line-height: 1.9;
  }

  .eh-retina-faq-list {
    border-top: 1px solid var(--eh-border);
  }

  .eh-retina-faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--eh-border);
  }

  
element {
}
.eh-retina-faq-item summary {
  cursor: pointer;
  list-style: none;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: var(--eh-green);
  font-family: var(--Font-2);
  font-size: 16px;
  line-height: 1.2;
}
.eh-retina-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--eh-teal);
    font-family: var(--eh-sans);
    font-size: 22px;
  }
  .eh-retina-faq-answer {
    max-width: 700px;
    padding-top: 15px;
    color: var(--eh-muted);
    font-family: var(--Font-2);
    font-size: 14px;
    line-height: 1.9;
  }

  .eh-retina-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--eh-green);
    color: #fff;
    text-align: center;
  }

  .eh-retina-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: -240px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
  }
  .eh-caries-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }
  .eh-retina-cta h2 {
    position: relative;
    max-width: 850px;
    margin: 0 auto 22px;
    color: #fff;
    font-family: var(--Font);
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.03em;
  }
  .eh-retina-cta p {
    position: relative;
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.8;
  }
  .eh-retina-cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }


  .eh-retina-btn-light {
    color: var(--eh-green);
    background: var(--eh-cream);
  }

  .eh-retina-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 54px;
    padding: 7px 8px 7px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--Font-2);
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }

  .eh-retina-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .eh-retina-btn-light span {
    background: var(--eh-green);
    color: #fff;
  }

  .eh-retina-btn svg {
    width: 18px;
    height: 18px;
  }

  .eh-retina-btn-primary {
    color: #fff;
    background: var(--eh-teal);
  }

  .eh-retina-btn-primary span {
    background: rgba(255,255,255,.15);
  }

  .eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }

  .eh-retina-locations-heading {
    max-width: 760px;
    margin-bottom: 55px;
  }
  .eh-retina-section-label {
    display: inline-block;
    font-family: var(--Font);
    margin-bottom: 22px;
    padding: 9px 15px;
    border: 1px solid rgba(8,125,112,.25);
    border-radius: 100px;
    color: var(--eh-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .eh-retina-section-title {
    margin: 0 0 26px;
    color: var(--eh-green);
    font-family: var(--Font);
    font-size: clamp(32px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.03em;
  }
  .eh-retina-section-title em {
    color: var(--eh-teal);
    font-style: normal;
  }

  .eh-retina-copy {
    color: #3f4946;
    font-size: 16px;
    line-height: 1.9;
  }
  .eh-retina-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .eh-retina-location-card {
    overflow: hidden;
    border-radius: 34px;
    background: var(--eh-cream);
    border: 1px solid var(--eh-border);
  }

  .eh-retina-location-map {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #dce7e3;
  }

  .eh-retina-location-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
  }

  .eh-retina-location-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--Font-2);
    font-size: 12px;
    font-weight: 700;
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }

  .eh-retina-location-actions a:hover {
    transform: translateY(-2px);
  }

  .eh-retina-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .eh-retina-location-directions {
    color: #fff;
    background: var(--eh-teal);
  }

  .eh-retina-location-service {
    padding: 120px 0;
  }
  .eh-retina-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }
  .eh-retina-location-service-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 40px;
    background: var(--eh-green);
    color: #fff;
    text-align: center;
  }

  .eh-retina-location-service-inner .eh-caries-section-label {
    border-color: rgba(255,255,255,.2);
    color: #b9ddd5;
  }

  .eh-retina-section-label {
    display: inline-block;
    font-family: var(--Font);
    margin-bottom: 22px;
    padding: 9px 15px;
    border: 1px solid rgba(8,125,112,.25);
      border-top-color: rgba(8, 125, 112, 0.25);
      border-right-color: rgba(8, 125, 112, 0.25);
      border-bottom-color: rgba(8, 125, 112, 0.25);
      border-left-color: rgba(8, 125, 112, 0.25);
    border-radius: 100px;
    color: var(--eh-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .eh-retina-location-service-inner h2 {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #fff;
    font-family: var(--Font-2);
    font-size: clamp(34px, 5vw, 45px);
    line-height: 1.08;
    font-weight: 500;
  }

  .eh-retina-location-service-inner h2 em {
    color: #45a99a;
    font-style: normal;
  }
  .eh-retina-location-service-inner p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.8;
  }

  .eh-retina-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 8px 9px 8px 24px;
    border-radius: 100px;
    background: var(--eh-teal);
    color: #fff;
    font-family: var(--Font-2);
    font-size: 13px;
    font-weight: 700;
    transition: transform .3s ease;
  }
  .eh-retina-service-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
  }

  .eh-retina-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
    .eh-retina-location-service-inner {
        padding: 45px 25px;
      }
    .eh-retina-faq-grid {
        gap: 45px;
      }
      .eh-retina-hero-grid, .eh-retina-intro-grid, .eh-retina-conditions-grid, .eh-retina-why-grid, .eh-retina-faq-grid {
        grid-template-columns: 1fr;
      }
    .eh-retina-intro, .eh-retina-expertise, .eh-retina-conditions, .eh-retina-why, .eh-retina-faq {
        padding: 85px 0;
      }
        .eh-retina-locations-grid {
          grid-template-columns: 1fr;
        }
        .eh-retina-locations, .eh-retina-location-service {
            padding: 85px 0;
          }

    .eh-retina-hero {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .eh-retina-hero-grid,
    .eh-retina-intro-grid,
    .eh-retina-conditions-grid {
        grid-template-columns: 1fr;
    }

    .eh-retina-hero-grid {
        gap: 45px;
    }

    .eh-retina-hero h1 {
        font-size: clamp(42px, 10vw, 50px);
    }

    .eh-retina-doctor-wrap {
        min-height: 500px;
    }

    .eh-retina-doctor-shape {
        left: 0;
        width: 85%;
        height: 480px;
    }

    .eh-retina-doctor-image {
        height: 510px;
    }

    .eh-retina-doctor-badge {
        right: 0;
    }

    .eh-retina-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eh-retina-intro,
    .eh-retina-expertise,
    .eh-retina-conditions {
        padding: 85px 0;
    }

    .eh-retina-heading-row {
        display: block;
    }

    .eh-retina-heading-row .eh-retina-copy {
        margin-top: 20px;
    }
}


@media (max-width: 600px) {
    .eh-retina-location-service-inner {
        padding: 38px 22px;
        border-radius: 30px;
      }
    .eh-retina-insurance-inner h2 {
        font-size: 32px;
      }
    .eh-retina-insurance-inner {
        padding: 38px 22px;
      }
    .eh-retina-container {
        width: min(100% - 32px, 1240px);
    }

    .eh-retina-hero {
        padding-top: 100px;
    }

    .eh-retina-hero h1 {
        font-size: 35px;
    }

    .eh-retina-hero-text {
        font-size: 15px;
    }

    .eh-retina-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-retina-btn {
        width: 100%;
    }

    .eh-retina-hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .eh-retina-doctor-wrap {
        min-height: 410px;
    }

    .eh-retina-doctor-shape {
        width: 90%;
        height: 400px;

        border-radius:
            130px
            30px
            130px
            30px;
    }

    .eh-retina-doctor-image {
        height: 425px;
    }

    .eh-retina-doctor-badge {
        width: 175px;
        padding: 16px;
        bottom: 35px;
    }

    .eh-retina-stats-grid {
        grid-template-columns: 1fr;
    }

    .eh-retina-stat {
        min-height: 115px;
    }

    .eh-retina-image-card {
        min-height: 430px;

        border-radius:
            30px
            130px
            30px
            130px;
    }

    .eh-retina-image-card img {
        min-height: 430px;
    }

    .eh-retina-credentials {
        grid-template-columns: 1fr;
    }

    .eh-retina-services {
        grid-template-columns: 1fr;
    }

    .eh-retina-service {
        min-height: 260px;
    }

    .eh-retina-condition-list {
        grid-template-columns: 1fr;
    }
}