* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {
      position: relative;
      width: 100%;
      min-height: 77vh;
      background: url("Assestes/Novocare-banner-1\ 1.png") no-repeat center center;
      background-size: cover;
      background-position: right center;
      color: white;
      padding: 30px 60px;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.46);
      z-index: 0;
    }

    .hero * {
      position: relative;
      z-index: 2;
    }

    .hero-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .logo {
      width: 85px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .divider {
      width: 2px;
      height: 35px;
      background: #ffffff;
      display: inline-block;
      opacity: 0.9;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #ffffff;
    }

    .brand-text sup {
      font-size: 12px;
      margin-left: 2px;
      vertical-align: super;
    }

    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hero-text {
      max-width: 70%;
    }

    .hero-heading {
      font-family: 'Noto Sans', 'Inter', sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: 64px;
      line-height: 1.2;
      text-align: left;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .hero-heading span {
      display: inline-block;
    }

    .hero-heading sup {
      font-size: 35px;
      font-weight: 800;
      vertical-align: super;
      margin-left: 4px;
    }


    /* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .hero {
    padding: 20px 30px;
    min-height: 80  vh;
    background-position: 95% center;
  }

  .hero-text {
    max-width: 80%;
  }

  .hero-heading {
    font-size: 70px;
    line-height: 1.3;
  }

  .logo {
    width: 80px;
  }

  .brand-text {
    font-size: 18px;
  }
}    


    /* ---------- SECOND SECTION: HOW TO TAKE OZEMPIC® ---------- */
    .instruction-section {
      padding: 70px 24px 90px;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      /* font-weight: 700; */
      color: #64656A;
      margin-bottom: 15px;
      letter-spacing: -0.3px;
      font-weight: 550;
    }

    .section-title sup {
      font-size: 18px;
      font-weight: 500;
      vertical-align: super;
      color: #64656A;
    }

    /* video wrapper – replaces old thumbnail card */
    .video-wrapper {
      position: relative;
      max-width: 80%;
      margin: 0 auto;
      aspect-ratio: 16 / 8;
      cursor: pointer;
      border-radius: 20px;
      overflow: hidden;
    }

    /* video element itself */
    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* custom play button overlay */
    .play-btn-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.5);
      z-index: 10;
    }

    .play-btn-overlay:hover {
      transform: translate(-50%, -50%) scale(1.05);
      border-color: white;
    }

    /* hide play button when video is playing */
    .play-btn-overlay.hide {
      display: none;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */
    @media (max-width: 1024px) {
      .hero-heading {
        font-size: 52px;
      }

      .hero-heading sup {
        font-size: 28px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 20px 20px;
        min-height: 70vh;
        background-position: 91%;
      }

      .hero-header {
        justify-content: left;
      }

      .hero-content {
        justify-content: left;
        text-align: left;
      }

      .hero-text {
        max-width: 100%;
        text-align: center;
      }

      .hero-heading {
        font-size: 36px;
        text-align: center;
        line-height: 1.3;
      }

      .hero-heading sup {
        font-size: 20px;
      }

      .logo {
        width: 70px;
      }

      .brand-text {
        font-size: 18px;
      }

      .divider {
        height: 28px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 32px;
      }

      .video-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
      }

      .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 30px;
      }

      .instruction-section {
        padding: 50px 16px 70px;
      }
    }

    @media (max-width: 480px) {
      .hero-heading {
        font-size: 40px;
      }

      .hero-heading sup {
        font-size: 16px;
      }

      .play-btn-overlay {
        width: 60px;
        height: 60px;
        font-size: 26px;
      }

      .section-title {
        font-size: 24px;
      }
    }

    button,
    .play-btn-overlay {
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }


    /* ---------- THIRD SECTION: HEALTH JOURNEY ---------- */
    .health-journey-section {
      padding: 70px 24px 90px;
      /* background: #ffffff; */
    }

    .container {
      max-width: 80%;
      margin: 0 auto;
    }

    .journey-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.3px;
    }

    .journey-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    /* Image grid – 2 columns on desktop & tablet, 1 column on mobile */
    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .grid-item {
      overflow: hidden;
      /* border-radius: 20px; */
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-item img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Tablet: reduce gap and slightly smaller heading */
    @media (max-width: 1024px) {
      .journey-title {
        font-size: 30px;
      }

      .image-grid {
        gap: 24px;
      }
    }

    /* Mobile: single column */
    @media (max-width: 768px) {
      .health-journey-section {
        padding: 50px 20px 70px;
      }

      .journey-title {
        font-size: 30px;
        margin-bottom: 32px;
      }

      .image-grid {
        grid-template-columns: 1fr;
        /* stack vertically */
        gap: 24px;
      }
    }



    /* ---------- FOURTH SECTION: EVIDENCE-BASED BENEFITS ---------- */
    .evidence-section {
      padding: 70px 24px 90px;
      background: #ffffff;
    }

    .evidence-title {
      font-size: 38px;
      font-weight: 550;
      color: #64656A;
      text-align: center;
      margin-bottom: 60px;
      letter-spacing: -0.3px;
    }

    .evidence-title sup {
      font-size: 20px;
      font-weight: 500;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
    }

    .benefit-card {
      background-color: rgba(253, 181, 21, 0.2);
      /* 20% opacity */
      border-radius: 20px;
      padding: 24px 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      flex-shrink: 0;
    }

    .benefit-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      display: block;
    }

    .benefit-content {
      flex: 1;
      text-align: left;
    }

    .benefit-stat {
      font-weight: bolder;
      font-size: 40px;
      line-height: 1.2;
      color: #E96D07;
      margin-bottom: 8px;
    }

    .benefit-desc {
      /* font-family: 'Noto Sans', 'Inter', sans-serif; */
      font-weight: 400;
      font-size: 22px;
      line-height: 1.3;
      color: #64656A;
    }

    /* Tablet: 2 columns */
    @media (max-width: 1024px) {
      .evidence-title {
        font-size: 36px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .benefit-stat {
        font-size: 32px;
      }

      .benefit-desc {
        font-size: 18px;
      }

      .benefit-icon img {
        width: 60px;
        height: 60px;
      }

      .benefit-card {
        padding: 20px 16px;
        gap: 16px;
      }
    }

    /* Mobile: 2 columns (still) but with smaller elements */
    @media (max-width: 768px) {
      .evidence-section {
        padding: 50px 20px 70px;
      }

      .evidence-title {
        font-size: 30px;
        margin-bottom: 40px;
      }

      .benefits-grid {
        gap: 20px;
      }

      .benefit-card {
        flex-direction: column;
        /* stack icon above text on very small? No, keep horizontal but reduce icon size */
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
      }

      .benefit-icon img {
        width: 50px;
        height: 50px;
      }

      .benefit-stat {
        font-size: 28px;
      }

      .benefit-desc {
        font-size: 16px;
      }
    }

    /* Extra small phones: ensure text doesn't overflow */
    @media (max-width: 480px) {
      .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
      }

      .benefit-icon {
        margin-bottom: 0;
      }

      .benefit-stat {
        font-size: 26px;
      }

      .benefit-desc {
        font-size: 14px;
      }
    }



    /* ---------- FIFTH SECTION: PATIENT EDUCATION & RESOURCES ---------- */
    /* SECTION */
    .resources {
      /* background: #f3f3f3; */
      padding: 60px 20px;
      text-align: center;
    }

    /* TITLE */
    .resources-title {
      /* font-family: 'Noto Sans', sans-serif; */
      font-size: 36px;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* GRID */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 80%;
      margin: auto;
    }

    /* CARD */
    .resource-card {
      text-align: left;
    }

    /* IMAGE */
    .resource-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    /* TITLE */
    .resource-card h3 {
      font-size: 20px;
      line-height: 140%;
      color: #001965;
      margin-bottom: 10px;
    }

    /* ® FIX */
    .resource-card h3 sup {
      font-size: 12px;
      vertical-align: super;
    }

    /* DESCRIPTION */
    .resource-card p {
      font-size: 16px;
      color: #666D80;
      margin-bottom: 15px;
    }


    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: #005AD2;
      text-decoration: none;
      font-weight: 500;
    }

    /* Arrow animation (optional 🔥) */
    .download-btn .arrow {
      display: flex;
      transition: transform 0.3s ease;
    }

    .download-btn:hover .arrow {
      transform: translateX(4px);
    }


    /* TABLET + MOBILE */
    @media (max-width: 768px) {
      .resources-grid {
        grid-template-columns: 1fr;
        /* 🔥 1 column */
      }

      .resources-title {
        font-size: 28px;
      }

      .resource-card {
        text-align: center;
      }
    }


    /* SIXTH 6TH SECTION */
    .faq-section {
      padding: 60px 20px;
    }

    /* TITLE */
    .faq-title {
      font-size: 36px;
      text-align: center;
      color: #64656A;
      margin-bottom: 40px;
      font-weight: 550;
    }

    /* CONTAINER */
    .faq-container {
      max-width: 80%;
      margin: auto;
    }

    /* ITEM */
    .faq-item {
      background: rgba(253, 181, 21, 0.2);
      border-left: 5px solid #E96D07;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    /* QUESTION */
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    /* TEXT */
    .faq-question span {
      font-size: 18px;
      color: #E96D07;
      font-weight: 600;
    }

    .faq-question span sup {
      font-weight: 400;
      font-size: 12px;
    }


    .faq-btn {
      width: 35px;
      height: 35px;
      background: #ffffff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      /* 🔥 remove default padding */
    }

    /* SVG fix */
    .faq-btn svg {
      display: block;
    }

    .faq-btn svg path {
      stroke: #E96D07;
    }

    /* Rotate when open */
    .faq-item.active .faq-btn svg {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }

    /* ANSWER */
    .faq-answer {
      font-size: 16px;
      color: #4b4c50;
      margin-top: 15px;
      display: none;
      font-weight: 400;
      line-height: 25px;
    }

    /* ACTIVE STATE */
    .faq-item.active .faq-answer {
      display: block;
    }

    @media (max-width: 768px) {

      .faq-title {
        font-size: 28px;
      }

      .faq-question span {
        font-size: 16px;
      }

      .faq-answer {
        font-size: 14px;
      }
    }

    /* SEVENTH 7TH SECTION CSS CODE */
    /* SECTION */
.ref-section {
  padding: 20px 20px;
}

/* CONTAINER */
.ref-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.ref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.ref-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 550;
}

/* BUTTON */
.ref-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICONS */
.ref-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide plus by default */
.icon-plus {
  display: none;
}

/* CONTENT */
.ref-content {
  margin-top: 20px;
}

.ref-content ol {
  padding-left: 20px;
}

.ref-content li {
  font-size: 16px;
  line-height: 20px;
  color: #001965;
  margin-bottom: 8px;
}


/* TOGGLE STATE */
.ref-container:not(.active) .ref-content {
  display: none;
}

.ref-container:not(.active) .icon-minus {
  display: none;
}

.ref-container:not(.active) .icon-plus {
  display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .ref-header h2 {
    font-size: 28px;
  }

  .ref-content li {
    font-size: 14px;
    line-height: 22px;
  }

  .ref-container {
    padding: 20px;
  }
}

/* EIGHT 8TH SECTION CODE */
/* SECTION */
.api-section {
  padding: 20px 20px;
  margin-bottom: 50px;
}

/* CONTAINER */
.api-container {
  max-width: 80%;
  margin: auto;
  background: #F0F7FD;
  border-radius: 12px;
  padding: 40px;
}

/* HEADER */
.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.api-header h2 {
  font-size: 36px;
  color: #64656A;
  font-weight: 600;
}



/* BUTTON */
.api-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* ICON CENTER */
.api-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 22px;
  height: 22px; */
  transform: translate(-50%, -50%);
}

/* ICON TOGGLE */
.icon-plus {
  display: none;
}

/* CONTENT */
.api-content {
  margin-top: 20px;
}

.api-content p {
  font-size: 16px;
  line-height: 26px;
  color: #001965;
}

/* TOGGLE LOGIC */
.api-container:not(.active) .api-content {
  display: none;
}

.api-container:not(.active) .icon-minus {
  display: none;
}

.api-container:not(.active) .icon-plus {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .api-header h2 {
    font-size: 28px;
  }

  .api-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .api-container {
    padding: 20px;
  }
}

/* footer section css code */
/* FOOTER */
.footer {
  background: #001965;
  padding: 60px 20px;
  color: #ffffff;
}

/* CONTAINER */
.footer-container {
  max-width: 80%;
  margin: auto;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-links a {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: underline;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* TEXT */
.footer-text p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  /* max-width: 1000px; */
}

/* LOGO */
.footer-logo {
  margin-top: 30px;
}

.footer-logo img {
  width: 11%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-logo img {
    width: 70px;
  }
}

@media (max-width: 480px) {

  .footer {
    padding: 40px 15px;
  }

  .footer-links a {
    font-size: 14px;
  }
}


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

  /* Full width sections */
  .video-wrapper,
  .container,
  .resources-grid,
  .faq-container {
    width: 100%;
  }
  .video-wrapper{
    max-width: 100%;
  }

  /* Reference section */
  .ref-container {
    width: 100%;
    /* padding: 20%; */
  }
  .ref-container{
    max-width: 100%;
    padding: 20px;
  }
  .ref-header h2{
    font-size: 30px;
  }
  .container{
    max-width: 100%;
  }
  .evidence-title{
    font-size: 30px;
  }
  .resources-title{
    font-size: 30px;
  }
.resources-grid{
  max-width: 100%;
}
.faq-container{
  max-width: 100%;
}
.faq-title{
  font-size: 30px;
}
  /* API section */
  .api-container {
    max-width: 100%;
    padding: 20px;
  }
  .api-header h2{
    font-size: 30px;
  }

  /* Footer */
  .footer-container {
    max-width: 90%;
    margin: 0 auto; /* center it */
  }

  .footer-logo img {
    width: 15%;
  }

  /* Health Journey Section */
  .health-journey-section {
    padding: 20px 24px 90px;
  }


}

/* mobile version code */
@media (max-width: 480px) {
  .section-title {
    font-size: 25px;
  }
  .journey-title{
    font-size: 25px;
  }
  .evidence-title{
    font-size: 25px;
  }
  .resources-title{
    font-size: 25px;
  }
  .resource-card{
    text-align: left;
  }
    .faq-title {
      font-size: 25px;
    }
    .faq-btn {
  width: 35px;
  height: 35px;
  min-width: 35px;   /* 🔥 prevents shrinking */
  min-height: 35px;  /* 🔥 ensures perfect circle */
  flex-shrink: 0;    /* 🔥 IMPORTANT */
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* add space */
}

    .ref-header h2{
      font-size: 25px;
    }
    .api-header h2{
      font-size: 25px;
    }
    .footer-logo img{
      width: 30%;
    }
}