/* ── RESET & BASE ───────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #111;
      -webkit-font-smoothing: antialiased;
      line-height: 1;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    input,
    textarea,
    select {
      font-family: inherit;
    }

    /* ── COLOR PALETTE (Red · White · Black) ── */
    :root {
      --red: #C00;
      --red-dark: #960000;
      --red-light: #FFF5F5;
      --black: #111;
      --dark: #1A1A1A;
      --mid: #444;
      --gray: #666;
      --border: #DDD;
      --bg: #F7F7F7;
      --white: #FFF;
      --green: #1A7A3F;
      --green-wa: #25D366;
      --font-body: 'Inter', sans-serif;
      --font-head: 'Poppins', sans-serif;
      --shadow: 0 2px 16px rgba(0, 0, 0, .10);
      --shadow-lg: 0 6px 32px rgba(0, 0, 0, .14);
    }

    /* ── UTILITY BUTTONS ─────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 700;
      border-radius: 4px;
      cursor: pointer;
      transition: all .18s;
      text-decoration: none;
      border: 2px solid transparent;
      white-space: nowrap;
    }

    .btn-red {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
      padding: 12px 24px;
      font-size: 14px;
    }

    .btn-red:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
    }

    .btn-red-lg {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
      padding: 15px 32px;
      font-size: 15px;
    }

    .btn-red-lg:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border-color: #fff;
      padding: 12px 24px;
      font-size: 14px;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .15);
    }

    .btn-wa {
      background: var(--green-wa);
      color: #fff;
      border-color: var(--green-wa);
      padding: 12px 24px;
      font-size: 14px;
    }

    .btn-wa:hover {
      background: #1ca34d;
      border-color: #1ca34d;
    }

    .btn-wa-lg {
      background: var(--green-wa);
      color: #fff;
      border-color: var(--green-wa);
      padding: 15px 32px;
      font-size: 15px;
    }

    .btn-wa-lg:hover {
      background: #1ca34d;
      border-color: #1ca34d;
    }

    .btn-black {
      background: var(--black);
      color: #fff;
      border-color: var(--black);
      padding: 12px 24px;
      font-size: 14px;
    }

    .btn-black:hover {
      background: #333;
      border-color: #333;
    }

    /* ── EMERGENCY BAR ───────────────────────── */
    .emg-bar {
      background: var(--red);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 24px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 1001;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    }

    .emg-bar a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      background: rgba(255, 255, 255, .2);
      border: 1px solid rgba(255, 255, 255, .4);
      padding: 4px 14px;
      border-radius: 3px;
      transition: background .15s;
    }

    .emg-bar a:hover {
      background: rgba(255, 255, 255, .3);
    }

    .emg-sep {
      opacity: .4;
      font-weight: 300;
    }

    /* ── HEADER ──────────────────────────────── */
    .site-header {
      position: sticky;
      top: 44px;
      z-index: 999;
      background: #fff;
      border-bottom: 2px solid var(--red);
      box-shadow: var(--shadow);
    }

    .hdr-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-box {
      width: 44px;
      height: 44px;
      background: var(--red);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .logo-text {
      font-family: var(--font-head);
      line-height: 1.2;
    }

    .logo-text strong {
      display: block;
      font-size: 15px;
      font-weight: 900;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .logo-text span {
      font-size: 11px;
      color: var(--gray);
      font-weight: 500;
    }

    .hdr-nav ul {
      display: flex;
      gap: 2px;
      list-style: none;
    }

    .hdr-nav a {
      color: var(--dark);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 3px;
      transition: all .15s;
      display: block;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .hdr-nav a:hover {
      color: var(--red);
      background: var(--red-light);
    }

    .hdr-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    /* ── BREADCRUMB ──────────────────────────── */
    .breadcrumb {
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }

    .bc-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 9px 24px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 4px;
      font-size: 12.5px;
      color: var(--gray);
    }

    .bc-inner a {
      color: var(--gray);
      transition: color .15s;
    }

    .bc-inner a:hover {
      color: var(--red);
    }

    .bc-sep {
      color: #ccc;
      margin: 0 2px;
      display: flex;
      align-items: center;
    }

    .bc-cur {
      color: var(--red);
      font-weight: 600;
    }

    /* ── HERO ────────────────────────────────── */
    .hero {
      background: var(--black);
      min-height: 580px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 56px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-live {
      width: 7px;
      height: 7px;
      background: #fff;
      border-radius: 50%;
      animation: blink 1.4s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: 42px;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -.5px;
    }

    .hero h1 span {
      color: var(--red);
    }

    .hero-sub {
      font-size: 16px;
      color: #bbb;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 30px;
    }

    .trust-item {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 4px;
      padding: 12px 14px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #fff;
      font-size: 13px;
      line-height: 1.35;
    }

    .trust-icon {
      color: var(--red);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .trust-item strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .trust-item small {
      opacity: .65;
      font-size: 12px;
    }

    .hero-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 18px;
    }

    .hero-assure {
      font-size: 12.5px;
      color: #888;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Hero right */
    .hero-img-col {
      position: relative;
    }

    .hero-img-frame {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
      aspect-ratio: 4/5;
      position: relative;
    }

    .hero-img-main {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero-img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, transparent 55%);
      padding: 28px 20px 20px;
    }

    .hero-stats {
      display: flex;
      gap: 12px;
    }

    .hero-stat {
      flex: 1;
      text-align: center;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 4px;
      padding: 10px 8px;
    }

    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 900;
      color: var(--red);
    }

    .hero-stat-lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, .75);
      margin-top: 3px;
    }

    .hero-pill {
      position: absolute;
      top: 16px;
      left: -20px;
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 4px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      animation: blink 1.4s ease-in-out infinite;
    }

    /* ── URGENCY STRIP ───────────────────────── */
    .urgency-strip {
      background: var(--red);
      padding: 16px 24px;
      text-align: center;
    }

    .urgency-strip p {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.5;
    }

    .urgency-strip p em {
      font-style: normal;
      opacity: .85;
      font-weight: 400;
    }

    /* ── SECTION BASE ────────────────────────── */
    .sec {
      padding: 72px 24px;
    }

    .sec-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .sec-tag {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 3px;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .sec-title {
      font-family: var(--font-head);
      font-size: 32px;
      font-weight: 800;
      color: var(--black);
      line-height: 1.25;
      margin-bottom: 14px;
      letter-spacing: -.3px;
    }

    .sec-title span {
      color: var(--red);
    }

    .sec-lead {
      font-size: 15.5px;
      color: var(--mid);
      line-height: 1.72;
      margin-bottom: 40px;
      max-width: 680px;
    }

    .bg-white {
      background: #fff;
    }

    .bg-gray {
      background: var(--bg);
    }

    .bg-red {
      background: var(--red);
    }

    .bg-black {
      background: var(--black);
    }

    /* ── HIGH RISK SECTION ───────────────────── */
    .hr-section {
      background: var(--black);
      padding: 72px 24px;
    }

    .hr-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .hr-top {
      text-align: center;
      margin-bottom: 44px;
    }

    .hr-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(204, 0, 0, .3);
      border: 1px solid rgba(255, 80, 80, .35);
      color: #FF8080;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .hr-section h2 {
      font-family: var(--font-head);
      font-size: 34px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.22;
    }

    .hr-section h2 span {
      color: var(--red);
    }

    .hr-sub {
      font-size: 15px;
      color: #999;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .hr-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 36px;
    }

    .hr-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 4px;
      padding: 16px 18px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: background .18s, border-color .18s;
    }

    .hr-card:hover {
      background: rgba(204, 0, 0, .12);
      border-color: rgba(204, 0, 0, .4);
    }

    .hr-q-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(204, 0, 0, .3);
      border: 2px solid rgba(204, 0, 0, .7);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FF8080;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 800;
    }

    .hr-q-text {
      font-size: 14.5px;
      color: rgba(255, 255, 255, .85);
      line-height: 1.55;
      font-weight: 500;
    }

    .hr-answer {
      background: rgba(204, 0, 0, .12);
      border: 1px solid rgba(204, 0, 0, .35);
      border-radius: 4px;
      padding: 14px 18px;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hr-answer p {
      font-size: 15px;
      color: #FCA5A5;
      font-weight: 600;
    }

    .hr-ctas {
      text-align: center;
    }

    .hr-cta-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    /* ── CONDOM BREAK SECTION ────────────────── */
    .condom-section {
      background: #fff;
      padding: 0;
      overflow: hidden;
    }

    .condom-banner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      box-shadow: var(--shadow-lg);
      border-radius: 6px;
      overflow: hidden;
      margin-top: -1px;
    }

    .condom-img-side {
      position: relative;
      min-height: 340px;
    }

    .condom-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 340px;
    }

    .condom-text-side {
      background: #fff;
      padding: 44px 44px;
    }

    .condom-text-side h2 {
      font-family: var(--font-head);
      font-size: 36px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .condom-text-side h2 span {
      color: var(--red);
    }

    .condom-text-side .tagline {
      font-size: 16px;
      color: var(--mid);
      margin-bottom: 24px;
      line-height: 1.55;
      font-weight: 500;
    }

    .condom-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .condom-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 15px;
      color: var(--dark);
      border-bottom: 1px solid var(--border);
      line-height: 1.45;
    }

    .condom-list li:last-child {
      border-bottom: none;
    }

    .cl-icon {
      color: var(--red);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── MED DELIVERY BANNER ─────────────────── */
    .delivery-sec {
      background: #EBF5FF;
      padding: 0;
      overflow: hidden;
    }

    .delivery-wrap {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      min-height: 260px;
    }

    .delivery-text {
      padding: 44px 48px 44px 32px;
    }

    .delivery-text h2 {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 900;
      color: var(--black);
      line-height: 1.28;
      margin-bottom: 22px;
    }

    .delivery-text h2 strong {
      color: var(--red);
    }

    .delivery-feats {
      list-style: none;
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .delivery-feats li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
    }

    .delivery-feat-icon {
      color: var(--red);
      flex-shrink: 0;
    }

    .delivery-img-side {
      position: relative;
      overflow: hidden;
      min-height: 260px;
    }

    .delivery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      min-height: 260px;
      display: block;
    }

    /* ── WHAT IS PEP ─────────────────────────── */
    .pep-layout {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 48px;
      align-items: start;
    }

    .pep-text p {
      font-size: 15.5px;
      color: var(--mid);
      line-height: 1.78;
      margin-bottom: 16px;
    }

    .pep-types {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 22px 0;
    }

    .pep-type {
      background: var(--red-light);
      border-left: 3px solid var(--red);
      border-radius: 0 4px 4px 0;
      padding: 16px;
    }

    .pep-type h4 {
      font-family: var(--font-head);
      font-size: 13.5px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .pep-type p {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.55;
      margin: 0;
    }

    .pep-img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 4px;
      margin-top: 24px;
      box-shadow: var(--shadow);
    }

    /* Consultation Card */
    .consult-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 130px;
    }

    .consult-card-hdr {
      background: var(--red);
      color: #fff;
      margin: -28px -28px 22px;
      padding: 18px 28px;
      border-radius: 4px 4px 0 0;
    }

    .consult-card-hdr h3 {
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 800;
    }

    .consult-card-hdr p {
      font-size: 12px;
      opacity: .85;
      margin-top: 2px;
    }

    .fee-row {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--red-light);
      border: 1px solid rgba(204, 0, 0, .2);
      border-radius: 4px;
      padding: 12px 16px;
      margin-bottom: 18px;
    }

    .fee-amt {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }

    .fee-lbl {
      font-size: 12.5px;
      color: var(--mid);
      line-height: 1.4;
    }

    .consult-list {
      list-style: none;
      margin-bottom: 20px;
    }

    .consult-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 0;
      font-size: 14px;
      color: var(--dark);
      border-bottom: 1px solid var(--border);
      line-height: 1.45;
    }

    .consult-list li:last-child {
      border-bottom: none;
    }

    .ci-icon {
      color: var(--red);
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── WHO SHOULD TAKE PEP ─────────────────── */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 28px;
    }

    .who-card {
      background: #fff;
      border-radius: 4px;
      padding: 24px;
      border: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
      transition: box-shadow .2s;
      border-top: 3px solid var(--red);
    }

    .who-card:hover {
      box-shadow: var(--shadow);
    }

    .who-icon {
      color: var(--red);
      margin-bottom: 12px;
    }

    .who-card h3 {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .who-card p {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.6;
    }

    .reassure-box {
      background: var(--red-light);
      border-left: 3px solid var(--red);
      border-radius: 0 4px 4px 0;
      padding: 20px 22px;
      margin-bottom: 24px;
    }

    .reassure-box p {
      font-size: 15px;
      color: var(--dark);
      line-height: 1.72;
    }

    /* ── RISK TABLE ──────────────────────────── */
    .tbl-wrap {
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 4px;
      box-shadow: var(--shadow);
      margin-bottom: 14px;
    }

    .risk-tbl {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 500px;
    }

    .risk-tbl thead th {
      background: var(--black);
      color: #fff;
      padding: 13px 18px;
      text-align: left;
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .risk-tbl tbody tr:nth-child(even) {
      background: var(--bg);
    }

    .risk-tbl tbody tr {
      border-bottom: 1px solid var(--border);
    }

    .risk-tbl tbody tr:hover {
      background: var(--red-light);
    }

    .risk-tbl td {
      padding: 12px 18px;
      color: var(--mid);
      line-height: 1.4;
    }

    .risk-tbl .high {
      font-weight: 700;
      color: var(--red);
    }

    .r-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 3px;
      margin-left: 6px;
      letter-spacing: .4px;
      vertical-align: middle;
    }

    .tbl-note {
      font-size: 12.5px;
      color: var(--gray);
      font-style: italic;
      margin: 10px 0 24px;
    }

    /* ── SYMPTOMS ────────────────────────────── */
    .sym-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 44px;
      align-items: start;
    }

    .sym-photo {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: var(--shadow-lg);
    }

    .sym-list {
      list-style: none;
    }

    .sym-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
    }

    .sym-item:last-child {
      border-bottom: none;
    }

    .sym-icon-box {
      width: 36px;
      height: 36px;
      border-radius: 4px;
      background: var(--red-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      flex-shrink: 0;
    }

    .sym-item strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 2px;
    }

    .sym-item em {
      font-style: normal;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.4;
    }

    .callout-box {
      background: #FFF8E1;
      border-left: 3px solid #F57C00;
      border-radius: 0 4px 4px 0;
      padding: 16px 18px;
      margin: 22px 0;
      font-size: 14.5px;
      color: var(--dark);
      line-height: 1.65;
    }

    /* ── TIMELINE ────────────────────────────── */
    .tl-wrap {
      position: relative;
      padding-left: 52px;
      margin-bottom: 32px;
    }

    .tl-line {
      position: absolute;
      left: 15px;
      top: 8px;
      bottom: 8px;
      width: 3px;
      background: linear-gradient(to bottom, #EF4444, #F97316, #EAB308, #3B82F6, #22C55E, #16A34A);
      border-radius: 3px;
    }

    .tl-node {
      position: relative;
      margin-bottom: 20px;
    }

    .tl-dot {
      position: absolute;
      left: -44px;
      top: 14px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      color: #fff;
      box-shadow: 0 0 0 3px #fff;
      z-index: 2;
    }

    .d-red {
      background: #EF4444
    }

    .d-org {
      background: #F97316
    }

    .d-amb {
      background: #D97706
    }

    .d-blue {
      background: #3B82F6
    }

    .d-grn {
      background: #22C55E
    }

    .d-dkg {
      background: #16A34A
    }

    .tl-card {
      background: #fff;
      border-radius: 4px;
      padding: 20px 22px;
      box-shadow: 0 1px 10px rgba(0, 0, 0, .07);
      border-left: 3px solid;
    }

    .tl-card.cl-red {
      border-color: #EF4444
    }

    .tl-card.cl-org {
      border-color: #F97316
    }

    .tl-card.cl-amb {
      border-color: #D97706
    }

    .tl-card.cl-blue {
      border-color: #3B82F6
    }

    .tl-card.cl-grn {
      border-color: #22C55E
    }

    .tl-card.cl-dkg {
      border-color: #16A34A
    }

    .tl-hdr {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .tl-day {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
    }

    .tl-pill {
      font-size: 10.5px;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .tp-red {
      background: #FEE2E2;
      color: #DC2626
    }

    .tl-body {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }

    .tl-field label {
      font-size: 10px;
      font-weight: 700;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: .5px;
      display: block;
      margin-bottom: 3px;
    }

    .tl-field p {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.48;
    }

    .tl-field.full {
      grid-column: 1 / -1;
    }

    .tl-alert {
      grid-column: 1 / -1;
      background: #FEF2F2;
      border: 1px solid #FECACA;
      border-radius: 3px;
      padding: 9px 12px;
      font-size: 13px;
      color: #B91C1C;
      font-weight: 600;
    }

    .tl-info {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 22px;
      margin-bottom: 24px;
      font-size: 15px;
      color: var(--mid);
      line-height: 1.72;
    }

    /* ── ABOUT ───────────────────────────────── */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 52px;
      align-items: start;
    }

    .doc-wrap {
      position: relative;
    }

    .doc-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      border-radius: 4px;
      box-shadow: var(--shadow-lg);
    }

    .doc-name-badge {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 3px;
      white-space: nowrap;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .25);
      border: 2px solid #fff;
    }

    .about-text p {
      font-size: 15.5px;
      color: var(--mid);
      line-height: 1.78;
      margin-bottom: 16px;
    }

    .creds-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 24px 0;
    }

    .cred-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cred-num {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 900;
      color: var(--red);
    }

    .cred-lbl {
      font-size: 12.5px;
      color: var(--gray);
    }

    /* ── JOURNEY ─────────────────────────────── */
    .journey-section {
      background: var(--black);
      padding: 72px 24px;
    }

    .journey-title {
      font-family: var(--font-head);
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      text-align: center;
    }

    .journey-title span {
      color: var(--red);
    }

    .journey-sub {
      font-size: 15px;
      color: #999;
      text-align: center;
      margin-bottom: 48px;
    }

    .journey-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .j-step {
      text-align: center;
      padding: 0 8px;
    }

    .j-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }

    .j-icon {
      color: var(--red);
      margin: 0 auto 10px;
      display: flex;
      justify-content: center;
    }

    .j-step h4 {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .j-step p {
      font-size: 12px;
      color: #888;
      line-height: 1.5;
    }

    /* ── HOW IT WORKS ────────────────────────── */
    .how-section {
      background: var(--black);
      padding: 72px 24px;
    }

    .how-title {
      font-family: var(--font-head);
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      text-align: center;
      margin-bottom: 8px;
    }

    .how-sub {
      font-size: 15px;
      color: #999;
      text-align: center;
      margin-bottom: 44px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      max-width: 960px;
      margin: 0 auto 32px;
    }

    .step-card {
      background: #1A1A1A;
      border: 1px solid #2A2A2A;
      border-radius: 4px;
      padding: 26px 18px;
      color: #fff;
      text-align: center;
      transition: background .18s, border-color .18s;
      border-top: 3px solid var(--red);
    }

    .step-card:hover {
      background: #222;
      border-color: #333;
    }

    .step-n {
      width: 44px;
      height: 44px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 900;
      margin: 0 auto 14px;
      color: #fff;
    }

    .step-card h3 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #fff;
    }

    .step-card p {
      font-size: 13.5px;
      color: #aaa;
      line-height: 1.55;
    }

    .how-note {
      color: #888;
      font-size: 14px;
      text-align: center;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .how-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ── LOCATIONS ───────────────────────────── */
    .locs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 24px;
    }

    .loc-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 26px 20px;
      box-shadow: var(--shadow);
      transition: all .2s;
      border-top: 3px solid var(--red);
    }

    .loc-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .loc-icon {
      color: var(--red);
      margin-bottom: 12px;
    }

    .loc-card h3 {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 6px;
    }

    .loc-addr {
      font-size: 13.5px;
      color: var(--gray);
      line-height: 1.5;
      margin-bottom: 6px;
    }

    .loc-hours {
      font-size: 13px;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 18px;
    }

    .loc-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-sm-red {
      font-size: 12.5px;
      font-weight: 700;
      padding: 7px 14px;
      border-radius: 3px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      transition: background .15s;
    }

    .btn-sm-red:hover {
      background: var(--red-dark);
    }

    .btn-sm-out {
      font-size: 12.5px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 3px;
      border: 1.5px solid var(--black);
      color: var(--black);
      text-decoration: none;
      background: transparent;
      transition: all .15s;
    }

    .btn-sm-out:hover {
      background: var(--black);
      color: #fff;
    }

    .areas-note {
      background: var(--red-light);
      border-left: 3px solid var(--red);
      border-radius: 0 4px 4px 0;
      padding: 16px 20px;
      font-size: 14.5px;
      color: var(--dark);
      line-height: 1.7;
    }

    /* ── SERVICE AREA PILLS ──────────────────── */
    .pills-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .area-pill {
      display: block;
      text-align: center;
      border: 1px solid var(--border);
      color: var(--mid);
      font-size: 12.5px;
      font-weight: 500;
      padding: 9px 8px;
      border-radius: 3px;
      background: #fff;
      transition: all .15s;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .area-pill:hover {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }

    /* ── QUERY FORM SECTION ──────────────────── */
    .query-section {
      background: var(--bg);
      padding: 72px 24px;
    }

    .query-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      box-shadow: var(--shadow-lg);
      border-radius: 4px;
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
    }

    .query-info {
      background: var(--red);
      padding: 48px 44px;
    }

    .query-info h2 {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .query-info p {
      font-size: 15px;
      color: rgba(255, 255, 255, .85);
      line-height: 1.68;
      margin-bottom: 28px;
    }

    .q-trust-list {
      list-style: none;
    }

    .q-trust-li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 14px;
      color: rgba(255, 255, 255, .88);
      border-bottom: 1px solid rgba(255, 255, 255, .15);
      line-height: 1.45;
    }

    .q-trust-li:last-child {
      border-bottom: none;
    }

    .q-trust-icon {
      color: rgba(255, 255, 255, .7);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .q-contact-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
    }

    .q-contact-link {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
    }

    .query-form-side {
      background: #fff;
      padding: 44px;
    }

    .query-form-side h3 {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 6px;
    }

    .query-form-side p {
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 3px;
      padding: 11px 14px;
      font-size: 14px;
      color: #555;
      transition: border-color .15s;
      /* appearance: none; */
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #bbb;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--red);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-note {
      font-size: 12px;
      color: var(--gray);
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .form-success {
      background: #F0FFF4;
      border: 1px solid #86EFAC;
      border-radius: 4px;
      padding: 14px 16px;
      font-size: 14px;
      color: #166534;
      display: none;
      margin-top: 12px;
    }

    /* ── PRIVACY ─────────────────────────────── */
    .privacy-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
    }

    .trust-list {
      list-style: none;
    }

    .trust-li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      color: var(--mid);
      line-height: 1.5;
    }

    .trust-li:last-child {
      border-bottom: none;
    }

    .tl-icon {
      color: var(--red);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .flow-list {
      list-style: none;
    }

    .flow-li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      color: var(--mid);
      line-height: 1.5;
    }

    .flow-li:last-child {
      border-bottom: none;
    }

    .flow-num {
      width: 28px;
      height: 28px;
      background: var(--red);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .quote-card {
      border-left: 3px solid var(--red);
      background: var(--red-light);
      border-radius: 0 4px 4px 0;
      padding: 18px 20px;
      font-size: 15px;
      font-style: italic;
      color: var(--dark);
      line-height: 1.7;
      margin: 22px 0;
    }

    /* ── FAQ ─────────────────────────────────── */
    .faq-wrap {
      max-width: 800px;
      margin: 0 auto;
    }

    details {
      background: #fff;
      border-radius: 4px;
      margin-bottom: 8px;
      box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    details[open] {
      border-color: rgba(204, 0, 0, .25);
      box-shadow: var(--shadow);
    }

    summary {
      padding: 17px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background .15s;
      user-select: none;
    }

    summary:hover {
      background: var(--bg);
    }

    details[open] summary {
      color: var(--red);
      background: var(--red-light);
      border-bottom: 1px solid var(--border);
    }

    .faq-plus {
      font-size: 22px;
      transition: transform .22s;
      flex-shrink: 0;
      color: var(--red);
      font-weight: 300;
      line-height: 1;
    }

    details[open] .faq-plus {
      transform: rotate(45deg);
    }

    .faq-body {
      padding: 16px 20px;
      font-size: 14.5px;
      color: var(--mid);
      line-height: 1.75;
    }

    /* ── FINAL CTA ───────────────────────────── */
    .final-sec {
      background: var(--black);
      padding: 80px 24px;
      text-align: center;
    }

    .final-sec h2 {
      font-family: var(--font-head);
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .final-sec h2 span {
      color: var(--red);
    }

    .final-sec p {
      font-size: 16px;
      color: #999;
      margin-bottom: 36px;
      line-height: 1.7;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .final-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 20px;
    }

    .final-meta {
      font-size: 13px;
      color: #666;
    }

    .final-meta span {
      color: #999;
      margin: 0 8px;
    }

    /* ── FOOTER ──────────────────────────────── */
    .site-footer {
      background: #0A0A0A;
      padding: 60px 24px 90px;
    }

    .footer-grid {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 52px;
      padding-bottom: 40px;
      border-bottom: 1px solid #1a1a1a;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .footer-logo-box {
      width: 38px;
      height: 38px;
      background: var(--red);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .footer-logo-name {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
    }

    .footer-logo-sub {
      font-size: 11px;
      color: #666;
    }

    .footer-tag {
      font-size: 13.5px;
      color: #666;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .footer-contacts a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #999;
      font-size: 13.5px;
      margin-bottom: 9px;
      transition: color .15s;
    }

    .footer-contacts a:hover {
      color: #fff;
    }

    .footer-col h4 {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 9px;
    }

    .footer-links a {
      color: #666;
      font-size: 13.5px;
      transition: color .15s;
    }

    .footer-links a:hover {
      color: var(--red);
    }

    .footer-loc {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #666;
      font-size: 13.5px;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .footer-bottom {
      max-width: 1140px;
      margin: 28px auto 0;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 12px;
      color: #444;
      line-height: 1.65;
    }

    /* ── MOBILE BAR ──────────────────────────── */
    .mob-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      padding-bottom: env(safe-area-inset-bottom);
    }

    .mob-bar-inner {
      display: flex;
      height: 56px;
    }

    .mob-wa {
      flex: 1;
      background: var(--green-wa);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .mob-wa:hover {
      background: #1ca34d;
    }

    .mob-call {
      flex: 1;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .mob-call:hover {
      background: var(--red-dark);
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 960px) {
      .journey-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .emg-bar {
        height: auto;
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px 16px;
        flex-wrap: wrap;
      }

      .site-header {
        top: auto;
      }

      .hdr-nav {
        display: none;
      }

      .hdr-inner {
        padding: 0 16px;
        height: 60px;
      }

      .logo-text span {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 16px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero-img-col {
        order: -1;
      }

      .hero-img-frame {
        aspect-ratio: 16/10;
      }

      .hero-pill {
        display: none;
      }

      .trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .hero-btns {
        flex-direction: column;
      }

      .sec {
        padding: 48px 16px;
      }

      .sec-title {
        font-size: 24px;
      }

      .pep-layout {
        grid-template-columns: 1fr;
      }

      .pep-types {
        grid-template-columns: 1fr;
      }

      .who-grid {
        grid-template-columns: 1fr;
      }

      .sym-layout {
        grid-template-columns: 1fr;
      }

      .sym-photo {
        height: 240px;
      }

      .tl-body {
        grid-template-columns: 1fr;
      }

      .about-layout {
        grid-template-columns: 1fr;
      }

      .doc-photo {
        aspect-ratio: 3/2;
      }

      .creds-grid {
        grid-template-columns: 1fr;
      }

      .journey-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .locs-grid {
        grid-template-columns: 1fr;
      }

      .pills-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .privacy-layout {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .mob-bar {
        display: block;
      }

      .site-footer {
        padding-bottom: 70px;
      }

      .final-sec h2 {
        font-size: 26px;
      }

      .final-btns {
        flex-direction: column;
        align-items: center;
      }

      .hr-grid {
        grid-template-columns: 1fr;
      }

      .condom-banner {
        grid-template-columns: 1fr;
      }

      .condom-img-side {
        min-height: 220px;
      }

      .condom-img {
        height: 220px;
      }

      .condom-text-side {
        padding: 28px 24px;
      }

      .delivery-wrap {
        grid-template-columns: 1fr;
      }

      .delivery-img-side {
        min-height: 200px;
      }

      .delivery-img {
        height: 200px;
      }

      .delivery-text {
        padding: 28px 24px;
      }

      .query-layout {
        grid-template-columns: 1fr;
      }

      .query-info {
        padding: 32px 28px;
      }

      .query-form-side {
        padding: 32px 28px;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .pills-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hr-cta-row {
        flex-direction: column;
        align-items: center;
      }

      .journey-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .btn{
        white-space: normal;
      }
    }

    @media (min-width: 769px) {
      .mob-bar {
        display: none !important;
      }
    }



    /*-------Custom Css-------------*/
    .logoBx a {
        display: inline-block;
        line-height: 0;
        margin-top: 10px;
    }
    .logoBx a img {
        height: 50px;
    }
    .overlay{
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
	display: none;
}

.sucess_overlay {
    background: rgba(0, 0, 0, 0.9);
}
.popupInn {
    max-width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.sucesspopInn {
    text-align: center;
    min-height: 360px;
    padding: 50px 20px;
}
.sucesspopInn i {
    display: block;
    max-width: 100px;
    margin: 0 auto 15px auto;
}
.popupInn h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}
.sucesspopInn h2 {
    color: #11891b;
    font-size: 34px;
    padding-bottom: 10px;
}
.sucesspopInn p {
    font-size: 18px;
    padding-bottom: 20px;
}
.popClose {
    position: absolute;
    right: 10px;
    top: 10px;
}
.popClose.sucessClose {
    position: relative;
    left: 0;
    top: 0;
}
.sucesspopInn a {
    padding: 10px 20px;
    background: #0c7d2b;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    width: auto;
    line-height: normal;
    height: auto;
    text-align: center;
}