
    /* ========== FONTS ========== */
    /* Atyp Text: Add your @font-face here when ready.
       For now, using a serif fallback that mimics the editorial feel. */
    :root {
      --font-heading: 'Atyp Text', 'DM Serif Display', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
      --color-teal: #2E9E9E;
      --color-teal-dark: #268A8A;
      --color-teal-light: #A8E6E6;
      --color-mint: #A8F0E8;
      --color-bg-light: #F2F2F2;
      --color-bg-white: #FFFFFF;
      --color-text-dark: #1A1A1A;
      --color-text-gray: #555555;
      --color-text-white: #FFFFFF;
      --color-border: #E0E0E0;
      --color-star: #F5A623;
      --max-width: 1280px;
    }

    /* ========== RESET ========== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      color: var(--color-text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      background: var(--color-bg-white);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul, ol {
      list-style: none;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ========== HEADER ========== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--color-border);
      height: 72px;
      display: flex;
      align-items: center;
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .logo {
      font-family: var(--font-body);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-teal);
      letter-spacing: 0.5px;
    }

    .logo span {
      color: var(--color-teal);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav a {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--color-text-dark);
      padding: 6px 12px;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }

    .nav a:hover,
    .nav a.active {
      background: rgba(46, 158, 158, 0.08);
      color: var(--color-teal-dark);
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-text-dark);
      transition: transform 0.3s, opacity 0.3s;
    }

    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.open span:nth-child(2) {
      opacity: 0;
    }
    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ========== HERO SECTION ========== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #3a4a4a;
    }

    .hero__bg .image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 100vh;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(30,40,40,0.65) 0%, rgba(30,40,40,0.3) 50%, rgba(30,40,40,0.1) 100%);
      z-index: 1;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding-top: 72px;
    }

    .hero .container {
      width: 100%;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(46, 158, 158, 0.85);
      color: var(--color-text-white);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .hero__badge .stars {
      color: #FFD700;
      letter-spacing: 2px;
    }

    .hero__title {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 4.5vw, 4rem);
      font-weight: 500;
      color: var(--color-text-white);
      line-height: 1.15;
      max-width: 680px;
      margin-bottom: 20px;
    }

    .hero__subtitle {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.2vw, 1.15rem);
      color: rgba(255, 255, 255, 0.85);
      max-width: 520px;
      line-height: 1.6;
      margin-bottom: 48px;
    }

    .hero__cards {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero__card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(46, 158, 158, 0.45);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 12px;
      min-width: 260px;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
    }

    .hero__card:hover {
      transform: translateY(-2px);
      background: rgba(46, 158, 158, 0.6);
    }

    .hero__card .image-placeholder {
      width: 120px;
      height: 80px;
      border-radius: 12px;
      flex-shrink: 0;
    }

    .hero__card-text {
      color: var(--color-text-white);
    }

    .hero__card-text .label {
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--color-teal-light);
    }

    .hero__card-text .title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    /* ========== IMAGE PLACEHOLDER (universal) ========== */
    .image-placeholder {
      background: linear-gradient(135deg, #d1d5db 0%, #e5e7eb 50%, #d1d5db 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }

    /* ========== WHAT ARE EXOSOMES SECTION ========== */
    .exosomes-info {
      background: var(--color-teal);
      color: var(--color-text-white);
      padding: 60px 0;
    }

    .exosomes-info .container {
      display: flex;
      align-items: flex-start;
      gap: 60px;
    }

    .exosomes-info__left {
      flex: 1;
      min-width: 0;
    }

    .exosomes-info__title {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 2.5vw, 2.5rem);
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .exosomes-info__desc {
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.9;
      max-width: 500px;
    }

    .exosomes-info__features {
      display: flex;
      gap: 40px;
      flex: 1.2;
      align-items: flex-start;
    }

    .exosomes-info__feature {
      flex: 1;
    }

    .exosomes-info__feature-icon {
      /*width: 32px;*/
      /*height: 32px;*/
      /*border-radius: 50%;*/
      /*background: rgba(255,255,255,0.2);*/
      margin-bottom: 12px;
      /*display: flex;*/
      /*align-items: center;*/
      /*justify-content: center;*/
    }

    .exosomes-info__feature-icon .dot {
      width: 10px;
      height: 10px;
      background: var(--color-text-white);
      border-radius: 50%;
    }

    .exosomes-info__feature h4 {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .exosomes-info__feature p {
      font-size: 0.85rem;
      opacity: 0.85;
      line-height: 1.5;
    }

    /* ========== OUR SERVICES SECTION ========== */
    .services {
      background: var(--color-bg-light);
      padding: 80px 0;
    }

    .services__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 500;
      text-align: center;
      margin-bottom: 48px;
      line-height: 1.2;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .service-card {
      background: var(--color-bg-white);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    }

    .service-card__image {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      margin-bottom: 20px;
      overflow: hidden;
    }

    .service-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--color-teal-light);
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-card__icon .image-placeholder {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--color-teal-light);
    }

    .service-card__name {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .service-card__desc {
      font-size: 0.9rem;
      color: var(--color-text-gray);
      line-height: 1.6;
    }

    /* ========== CARDS SECTION (Checklist + Care Guide) ========== */
    .info-cards {
      padding: 80px 0;
      background: var(--color-bg-light);
    }

    .info-card {
      max-width: 900px;
      margin: 0 auto 40px;
      border-radius: 20px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 320px;
    }

    .info-card:last-child {
      margin-bottom: 0;
    }

    .info-card--teal {
      background: var(--color-teal);
      color: var(--color-text-white);
    }

    .info-card--white {
      background: var(--color-bg-white);
      color: var(--color-text-dark);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .info-card__content {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .info-card__title {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 2.2vw, 2.2rem);
      font-weight: 500;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .info-card__list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .info-card__list li {
      font-size: 0.9rem;
      line-height: 1.6;
      padding-left: 16px;
      position: relative;
    }

    .info-card__list li::before {
      content: '•';
      position: absolute;
      left: 0;
      font-weight: 700;
    }

    .info-card--teal .info-card__list li::before {
      color: rgba(255,255,255,0.7);
    }

    .info-card__image {
      position: relative;
      overflow: hidden;
    }

    .info-card__image .image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 320px;
    }

    /* ========== TELEHEALTH SECTION ========== */
    .telehealth {
      background: var(--color-teal);
      color: var(--color-text-white);
      padding: 80px 0;
    }

    .telehealth__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 500;
      text-align: center;
      margin-bottom: 48px;
      line-height: 1.2;
    }

    .telehealth__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 56px;
    }

    .telehealth__item {
      text-align: center;
    }

    .telehealth__icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.4);
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .telehealth__icon .image-placeholder {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.4);
    }

    .telehealth__item h4 {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .telehealth__item p {
      font-size: 0.88rem;
      opacity: 0.85;
      line-height: 1.6;
      max-width: 300px;
      margin: 0 auto;
    }

    .telehealth__quote {
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 1.6vw, 1.45rem);
      font-weight: 500;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.5;
      opacity: 0.95;
    }

    /* ========== PROCESS SECTION ========== */
    .process {
      padding: 80px 0;
      background: var(--color-bg-white);
    }

    .process .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .process__left {
      padding-right: 20px;
    }

    .process__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 2.8vw, 2.6rem);
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .process__desc {
      font-size: 0.93rem;
      color: var(--color-text-gray);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .accordion {
      border-top: 1px solid var(--color-border);
    }

    .accordion__item {
      border-bottom: 1px solid var(--color-border);
    }

    .accordion__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--color-text-dark);
      transition: color 0.2s;
    }

    .accordion__header:hover {
      color: var(--color-teal);
    }

    .accordion__icon {
      font-size: 1.4rem;
      color: var(--color-teal);
      font-weight: 300;
      flex-shrink: 0;
      width: 24px;
      text-align: center;
      transition: transform 0.3s;
    }

    .accordion__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .accordion__item.open .accordion__body {
      max-height: 300px;
      padding-bottom: 20px;
    }

    .accordion__body-inner {
      font-size: 0.9rem;
      color: var(--color-text-gray);
      line-height: 1.7;
    }

    .process__image {
      border-radius: 16px;
      overflow: hidden;
    }

    .process__image .image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border-radius: 16px;
    }

    /* ========== TESTIMONIALS SECTION ========== */
    .testimonials {
      background: var(--color-bg-light);
      padding: 80px 0;
      overflow: hidden;
    }

    .testimonials__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 500;
      text-align: center;
      margin-bottom: 40px;
    }

    .testimonials__slider {
      position: relative;
      max-width: 100%;
      overflow: hidden;
    }

    .testimonials__track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      align-items: center;
    }

    .testimonial-slide {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0 20%;
      text-align: center;
      opacity: 1;
      transition: opacity 0.5s;
    }

    .testimonial-slide .stars {
      color: var(--color-star);
      font-size: 1rem;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .testimonial-slide .quote {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      color: var(--color-text-dark);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .testimonial-slide .author {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-text-dark);
    }

    .testimonials__arrows {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }

    .testimonials__arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--color-border);
      background: var(--color-bg-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--color-text-dark);
      transition: border-color 0.2s, background 0.2s;
    }

    .testimonials__arrow:hover {
      border-color: var(--color-teal);
      background: rgba(46, 158, 158, 0.06);
    }

    .testimonials__arrow svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    /* ========== REFERRAL SECTION ========== */
    .referral {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .referral__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #c8c8c8;
    }

    .referral__bg .image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 420px;
    }

    .referral__content {
      position: relative;
      z-index: 2;
      background: rgba(46, 158, 158, 0.88);
      padding: 40px 48px;
      padding-left: 0;
      max-width: 680px;
      margin-bottom: 0;
      color: var(--color-text-white);
    }
    .referral__content:before{
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: -300%;
      height: 100%;
      width: 300%;
      background: rgba(46, 158, 158, 0.88);
    }

    .referral__title {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 2.8vw, 2.5rem);
      font-weight: 500;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .referral__desc {
      font-size: 0.93rem;
      opacity: 0.9;
      line-height: 1.6;
    }

    .referral .container{
      padding-left: 0;
    }
    /* ========== FAQS SECTION ========== */
    .faqs {
      padding: 80px 0;
      background: var(--color-bg-white);
    }

    .faqs .container {
      max-width: 800px;
    }

    .faqs__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 2.8vw, 2.5rem);
      font-weight: 500;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .faqs__subtitle {
      font-size: 0.9rem;
      color: var(--color-text-gray);
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 540px;
    }

    .faq-group {
      margin-bottom: 32px;
    }

    .faq-group__label {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-teal);
      margin-bottom: 8px;
      padding-left: 4px;
    }

    .faq-accordion {
      border-top: none;
    }

    .faq-accordion .accordion__header {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
    }

    .faq-accordion .accordion__body-inner {
      font-size: 0.88rem;
    }

    /* ========== READY TO UNLOCK SECTION ========== */
    .unlock {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
    }

    .unlock__image {
      position: relative;
      overflow: hidden;
    }

    .unlock__image .image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 480px;
    }

    .unlock__content {
      background: var(--color-mint);
      padding: 60px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .unlock__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 2.8vw, 2.6rem);
      font-weight: 500;
      color: var(--color-text-dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .unlock__subtitle {
      font-size: 0.93rem;
      color: var(--color-text-gray);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .unlock__cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .unlock__card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(46, 158, 158, 0.4);
      border-radius: 16px;
      padding: 12px;
      max-width: 340px;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
    }

    .unlock__card:hover {
      transform: translateX(4px);
      background: rgba(46, 158, 158, 0.55);
    }

    .unlock__card .image-placeholder {
      width: 110px;
      height: 75px;
      border-radius: 12px;
      flex-shrink: 0;
    }

    .unlock__card-text {
      color: var(--color-text-white);
    }

    .unlock__card-text .label {
      font-size: 1rem;
      font-weight: 400;
    }

    .unlock__card-text .title {
      font-size: 1.15rem;
      font-weight: 600;
    }

    /* ========== DISCLAIMER SECTION ========== */
    .disclaimer {
      /*display: grid;*/
      /*grid-template-columns: 1fr 1.5fr;*/
      min-height: 400px;
      background: linear-gradient(to right, #2E9E9E 0%, #2E9E9E 50%, #F2F2F2 50%, #F2F2F2 100%);
    }

    .disclaimer__left {
      background: var(--color-teal);
      color: var(--color-text-white);
      padding: 60px 48px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .disclaimer__icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.3);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .disclaimer__icon .image-placeholder {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.3);
    }

    .disclaimer__heading {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 2.5vw, 2.4rem);
      font-weight: 500;
      line-height: 1.2;
    }

    .disclaimer__right {
      background: var(--color-bg-light);
      padding: 48px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 28px;
    }

    .disclaimer__block h4 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--color-text-dark);
    }

    .disclaimer__block p {
      font-size: 0.88rem;
      color: var(--color-text-gray);
      line-height: 1.7;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--color-bg-white);
      border-top: 1px solid var(--color-border);
      padding: 28px 0;
    }

    .footer .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer__nav {
      display: flex;
      gap: 28px;
    }

    .footer__nav a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text-gray);
      transition: color 0.2s;
    }

    .footer__nav a:hover {
      color: var(--color-teal);
    }
    .disclaimer-flex{
      display: flex;
      justify-content: space-between;
    }

    /* ========== RESPONSIVE ========== */

    /* 1536px */
    @media (max-width: 1536px) {
      .container {
        max-width: 1140px;
      }
    }

    /* 1440px */
    @media (max-width: 1440px) {
      .container {
        max-width: 1080px;
        padding: 0 36px;
      }
      .hero__title {
        max-width: 600px;
      }
    }

    /* 1280px */
    @media (max-width: 1280px) {
      .container {
        max-width: 960px;
        padding: 0 32px;
      }
      .nav {
        gap: 20px;
      }
      .nav a {
        font-size: 0.85rem;
        padding: 5px 8px;
      }
    }

    /* 1024px */
    @media (max-width: 1024px) {
      .container {
        max-width: 100%;
        padding: 0 28px;
      }

      .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
      }

      .nav.mobile-open {
        transform: translateY(0);
      }

      .nav a {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
      }

      .burger {
        display: flex;
      }

      .exosomes-info .container {
        flex-direction: column;
        gap: 32px;
      }

      .exosomes-info__features {
        width: 100%;
      }

      .process .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .process__image {
        order: -1;
      }

      .process__image .image-placeholder {
        min-height: 300px;
      }

      .info-card {
        max-width: 100%;
      }

      .unlock {
        grid-template-columns: 1fr;
      }

      .unlock__image .image-placeholder {
        min-height: 300px;
      }

      .unlock__content {
        padding: 48px;
      }

      .disclaimer {
        grid-template-columns: 1fr;
      }

      .disclaimer__left {
        padding: 48px;
      }

      .disclaimer__right {
        padding: 40px 48px;
      }
    }

    /* 768px */
    @media (max-width: 768px) {
      .container {
        padding: 0 24px;
      }

      .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .telehealth__grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .info-card {
        grid-template-columns: 1fr;
      }

      .info-card__image .image-placeholder {
        min-height: 220px;
      }

      .hero__cards {
        flex-direction: column;
      }

      .hero__card {
        min-width: unset;
        max-width: 320px;
      }

      .exosomes-info__features {
        flex-direction: column;
        gap: 24px;
      }

      .referral__content {
        max-width: 100%;
        padding: 32px;
      }

      .unlock__content {
        padding: 36px 28px;
      }

      .footer .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }

      .testimonial-slide {
        padding: 0 8%;
      }
    }

    /* 475px */
    @media (max-width: 475px) {
      html {
        font-size: 15px;
      }

      .container {
        padding: 0 16px;
      }

      .header {
        height: 60px;
      }

      .nav {
        top: 60px;
      }

      .hero__content {
        padding-top: 60px;
      }

      .services__grid {
        grid-template-columns: 1fr;
      }

      .services {
        padding: 48px 0;
      }

      .telehealth {
        padding: 48px 0;
      }

      .process {
        padding: 48px 0;
      }

      .testimonials {
        padding: 48px 0;
      }

      .faqs {
        padding: 48px 0;
      }

      .info-cards {
        padding: 48px 0;
      }

      .info-card__content {
        padding: 28px;
      }

      .referral {
        min-height: 340px;
      }

      .referral__content {
        padding: 24px;
      }

      .unlock__content {
        padding: 28px 20px;
      }

      .disclaimer__left {
        padding: 32px 24px;
      }

      .disclaimer__right {
        padding: 32px 24px;
      }

      .testimonial-slide {
        padding: 0 4%;
      }

      .referral .container{
        padding-right: 0;
      }
      .disclaimer-flex{
        flex-wrap: wrap;
      }
      .disclaimer__left{
        width: 100%;
      }
      .disclaimer__right{
        width: 100%;
      }
      .disclaimer{
        background: unset;
      }
    }

    /* 320px */
    @media (max-width: 360px) {
      html {
        font-size: 14px;
      }

      .container {
        padding: 0 12px;
      }

      .hero__card .image-placeholder {
        width: 90px;
        height: 64px;
      }
    }
  