    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", sans-serif;
    }

    img {
      max-width: 100%;
    }


    .timer {
        display: flex;
        /* align-items: center; */
        gap: 8px;
        color: red;
        font-size: 20px;
        font-weight: bold;
    }

    .timer div {
        text-align: center;
        font-size: 22px;
    }

    .timer span {
        display: block;
        font-size: 11px;
        color: white;
        font-weight: normal;
        margin-top: 0;
    }

    .blk_friday{
      /* background-color: #000; */
      background: url("https://assets.checkoutchamp.com/Funnel/assets/images/49f205c9-1855-48de-9e5d-280a11667374/afc2d4e7-89b2-4c32-a674-8381b88f828e/header-bg.png?v1.2");
      background-repeat: no-repeat;
      background-size: cover;
      font-family: "Inter", sans-serif;
      font-size: 12px;
      color: #fff;
      text-align: center;
      padding: 12px 20px;
    }
    .dv_sales{
      max-width: 650px;
      margin: auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .blk_1{
    font-size: 20px;
    font-weight:700;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
    text-align: left;
    color: #fcea8d;
    }

    .blk_1 span{
    font-size: 14px;
    font-weight:700;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
    text-align: left;
    color: #fff;
    }


    .blk_2{
    font-size: 13px;
    font-weight:500;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
    text-align: left;
    }

    .warning-bar {
      background-color: #f8f9fc;
      font-family: "Inter", sans-serif;
      font-size: 12px;
      color: #676873;
      text-align: center;
      padding: 12px 20px;
    }

    .warning-bar span {
      color: #dd3c3c;
      font-weight: bold;
    }
    .special-offer{
      width: 76px;
    }


    /*header*/

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      position: relative;
      z-index: 101;
    }

    .logo img {
      max-width: 140px;
    }

    .menu-icon {
      cursor: pointer;
      width: 25px;
      height: 20px;
      position: relative;
    }

    .menu-icon span {
      position: absolute;
      height: 3px;
      width: 100%;
      background-color: #222;
      left: 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .menu-icon span:nth-child(1) {
      top: 0;
    }

    .menu-icon span:nth-child(2) {
      top: 8px;
    }

    .menu-icon span:nth-child(3) {
      top: 16px;
    }

    .menu-icon.open span:nth-child(1) {
      transform: rotate(45deg);
      top: 8px;
    }

    .menu-icon.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
      transform: rotate(-45deg);
      top: 8px;
    }

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: auto;
      left: 0;
      right: 0;
      background: linear-gradient(to bottom, #e3f2fd, #eceff1);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 100;
    }

    .dropdown-menu.open {
      max-height: 300px;
    }

    .dropdown-menu a {
      display: block;
      padding: 15px 20px;
      text-decoration: none;
      color: #222;
      font-size: 16px;
      border-bottom: 1px solid #ddd;
    }

    .dropdown-menu a:last-child {
      border-bottom: none;
    }

    /*banner*/

    .ban-container {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 20px 20px;
      max-width: 650px;
      margin: auto;
      flex-wrap: wrap;
      background: url("https://assets.checkoutchamp.com/Funnel/assets/images/49f205c9-1855-48de-9e5d-280a11667374/afc2d4e7-89b2-4c32-a674-8381b88f828e/couple.png");
      background-size: 410px;
      background-repeat: no-repeat;
      background-position: bottom right;
      position: relative;
    }

    .product_image {
      position: absolute;
      right: 105px;
      bottom: 50px;
      width: 105px;
      height: 195px;
    }

    .ban_content_wrapper {
      max-width: 305px;
    }

    .ban-heading {
      font-size: 32px;
      font-weight: bold;
      line-height: 1.3;
    }

    .ban-heading span {
      color: #3A78E3;
    }

    .ban-subtext {
      color: #C78F2B;
      font-size: 16px;
      margin: 20px 0;
      max-width: 500px;
    }

    .ban-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .ban-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 16px;
    }

    .ban-list li img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
    }

    .ban-badges {
      display: flex;
      align-items: center;
      margin-top: 20px;
      gap: 10px;
    }

    .ban-badges img {
      height: 50px;
    }

    .ban-right {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .ban-right img {
      max-width: 100%;
      height: auto;
    }

    @media only screen and (max-width: 480px) {
      .blk_friday{
        background-position: center;
      }
      .dv_sales{
        display: block;
      }
      .blk_1{
        text-align: center;
      }
      .blk_2{
        text-align: center;
      }
      .blk_friday{
        padding: 12px 10px;
      }
      .ban_content_wrapper {
        max-width: 205px;
      }
      .timer{
        justify-content: center;
        margin-top: 5px;
      }

      .ban-container {
        background-size: 300px;
        background-position: center right;
      }

      .ban-heading {
        font-size: 22px;
        line-height: 1.2;
      }

      .ban-list li {
        font-size: 15px;
      }

      .ban-subtext {
        font-size: 14px;
        margin: 15px 0;
      }

      .product_image {
        bottom: 50px;
        width: 85px;
      }
    }

    @media only screen and (max-width:420px) {
      .ban-list li img {
        width: 20px;
        height: 20px;
      }

      .ban-list li {
        font-size: 12px;
      }

      .ban-container {
        background-size: 265px;
      }

      .product_image {
        bottom: 10px;
        width: 65px;
        right: 75px;
      }
    }

    .cnn {
      text-align: center;
    }

    .excl {
      background: #fafdff;
      border-top: 2px solid #d5ecfd;
      padding: 4px 0 5px;
    }

    .proudly_made{
      text-align: center;
      color: #000;
      margin-top: 10px;
      font-weight: 600;
      font-size: 14px;
    }

    .excl h2 {
      font-size: 14px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .excl h2 img {
      width: 30px;
      margin: 0px 8px;
    }


    /*about_sec*/

    .about-section {
      background: #f4f7fd;
      padding: 32px 15px 30px;
      font-family: "Inter", sans-serif;
    }

    .about-container {
      max-width: 650px;
      margin: 0 auto;
      text-align: center;
    }

    .about-title {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
    }

    .about-subtitle {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .about-image-box {
      margin-bottom: 30px;
    }

    .about-image {
      width: 80%;
      border-radius: 15px;
    }

    .about-benefits {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .about-benefit {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
      font-size: 15px;
      color: #333;
      text-align: left;
    }

    .about-benefit p {
      color: #1c1c28;
      font-size: 16px;
      line-height: 24px;
    }

    .about-icon {
      width: 30px;
      margin-right: 12px;
    }

    @media only screen and (max-width: 420px) {
      .hide_mb_br {
        display: none;
      }

    }



    /* symptom-section-css */


    .symptom-section {
      background: #f9f9f9;
      padding: 40px 15px;
      font-family: "Inter", sans-serif;
      text-align: center;
    }

    .symptom-container {
      max-width: 650px;
      margin: 0 auto;
    }

    .symptom-title {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
    }

    .symptom-subtitle {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .symptom-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .symptom-card {
      border-radius: 18px;
      overflow: hidden;
      padding: 10px;
      text-align: left;
    }

    .symptom-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 10px;
    }

    .symptom-info {
      padding-left: 5px;
    }

    .symptom-info strong {
      font-size: 20px;
      display: block;
      margin-bottom: 3px;
    }

    .symptom-info p {
      color: #676873;
      font-size: 14px;
      line-height: 22px;
      display: block;
    }

    .symptom-card.blue {
      background-color: #e4f0fd;
    }

    .symptom-card.yellow {
      background-color: #f4f6c5;
    }

    .symptom-card.green {
      background-color: #e4f9e6;
    }

    .symptom-card.gray {
      background-color: #eceef1;
    }




    /*benefits_sec*/


    .benefits-section {
      background-color: #f7f9fc;
      padding: 40px 15px;
      font-family: "Inter", sans-serif;
      text-align: center;
    }

    .benefits-container {
      max-width: 650px;
      margin: 0 auto;
    }

    .benefits-container h2 {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
    }

    .ben_phead {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
      text-align: left;
    }

    .main-image img {
      width: 100%;
      max-width: 350px;
      border-radius: 40% 40% 40% 40%;
    }

    .benefit-box {
      margin-top: 30px;
    }

    .benefit-item {
      background-color: #fff;
      display: flex;
      align-items: center;
      margin: 15px auto;
      max-width: 600px;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
      gap: 12px;
      text-align: left;
      border-radius: 24px;
      padding: 15px;
    }

    .benefit-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 0 #62707a21, 0 1px 2px #62707a1f, 0 4px 4px #62707a1c, 0 9px 5px #62707a0f, 0 16px 6px #62707a05;
    }

    .benefit-item.right {
      justify-content: space-between;
      background-color: transparent;
      box-shadow: none;
    }

    .benefit-item p {
      color: #1c1c28;
      font-size: 17px;
      line-height: 22px;
    }


    /* product-highlight-section */


    .product-highlight-section {
      text-align: center;
      font-family: "Inter", sans-serif;
      padding: 40px 15px;
      background-color: #fff;
    }

    .product-highlight-section h2 {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
      color: #1c1c28;
    }

    .product-highlight-section p {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .product-highlight-box {
      background-color: #d8ecff;
      border-radius: 20px;
      padding: 40px 20px;
      position: relative;
      display: inline-block;
      max-width: 500px;
    }

    .main-gummy {
      width: 250px;
      z-index: 1;
      position: relative;
    }

    .badge {
      position: absolute;
      width: 70px;
    }

    .badge-1 {
      top: 20px;
      right: 20px;
    }

    .badge-2 {
      top: 100px;
      right: 20px;
    }

    .badge-3 {
      bottom: 20px;
      right: 40px;
    }


    /* doc_section */

    .doc_card_wrap {
      margin: 0 auto;
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .doc-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 550px;
      padding: 25px;
      box-sizing: border-box;
      color: #333;
      margin-bottom: 15px;
    }

    .doc-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      gap: 15px;
      position: relative;
      border-bottom: 1px solid #d5ecfd;
      border-color: #1b293c29;
      padding-bottom: 18px;
    }

    .doc-card-header img.doc-photo {
      object-fit: cover;
      width: 200px;
    }

    .doc-card-header .doc-info {
      flex-grow: 1;
    }

    .doc-card-header .doc-info h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 650;
      color: #000;
    }

    .doc-card-header .doc-info p {
      display: block;
      color: #676873;
      font-size: 12px;
      line-height: 1.3;
      margin-bottom: 29px;
    }

    .doc-card-header .signature {
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      color: #555;
      font-style: italic;
      overflow: hidden;
      line-height: 1;
    }

    .doc-card-header .signature.neil {
      font-family: cursive;
    }

    .doc-card-header .signature.george {
      font-family: 'Brush Script MT', cursive;
    }


    .doc-tip-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      gap: 15px;
    }

    .doc-tip-item:last-child {
      margin-bottom: 0;
    }

    .doc-icon-wrapper {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: #e0f2f7;
      /* Light blue background for icons */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      color: #007bff;
      /* Blue color for icon */
    }

    /* Specific icon styles/placeholders */
    .doc-icon-wrapper.no-alcohol {
      background-color: #e0f2f7;
      color: #3399ff;
    }

    .doc-icon-wrapper.pill {
      background-color: #e0f2f7;
      color: #3399ff;
    }

    .doc-icon-wrapper.stamina {
      background-color: #e0f2f7;
      color: #3399ff;
    }

    .doc-icon-wrapper.info {
      background-color: #e0f2f7;
      color: #3399ff;
    }

    /* George's info icon */

    .doc-tip-text {
      font-size: 18px;
      line-height: 24px;
      color: #1c1c28;
    }

    /* Specific card styles */
    .doc-neil-card {
      background-color: #e6f2fb
        /* Very light blue for Neil's card */
    }

    .doc-george-card {
      background-color: #cfeacb;
      /* Light green for George's card */
      position: relative;
    }

    .doc-clinically-proven-badge {
      position: absolute;
      top: 25px;
      /* Aligns with the top of the header content */
      right: 25px;
      width: 100px;
      /* Adjust size as needed */
      height: 100px;
      /* Adjust size as needed */
      background-color: #e0ffe0;
      /* Light green background */
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.7em;
      font-weight: 700;
      color: #28a745;
      border: 2px solid #28a745;
      padding: 5px;
      box-sizing: border-box;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .doc-clinically-proven-badge::before {
      content: '✓';
      font-size: 1.5em;
      margin-bottom: 2px;
    }

    .doc-george-card .doc-tip-text {
      font-size: 18px;
      line-height: 24px;
      color: #1c1c28;
    }

    .doc_wrapper {
      display: flex;
      flex-direction: column;
    }

    .doc_sigg {
      display: flex;
    }

    .prvv img {
      width: 64px;
    }

    @media only screen and (max-width:480px) {
      .doc-card-header img.doc-photo {
        object-fit: cover;
        width: 150px;
      }

      .doc-card-header .doc-info h3 {
        font-size: 18px;
      }
    }


    /* enhancement css */

    .enh_cnt {
      background: #f5f7fa;
      padding: 30px 0;
    }

    .enhancement_box {
      margin: 0 auto;
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .enhance-container {
      width: 100%;
      max-width: 600px;
      text-align: center;
    }

    .enhance-title {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
      color: #1c1c28;
    }

    .enhance-subtitle {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .enhance-step-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 20px 25px;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 10px;
      text-align: left;
    }

    .enhance-step-card img {
      width: 100px;
      height: 100px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .enhance-step-content {
      flex-grow: 1;
    }

    .enhance-step-number {
      font-size: 2em;
      font-weight: 700;
      color: #b0b0b0;
      margin-bottom: 5px;
      line-height: 1;
    }

    .enhance-step-description {
      font-size: 17px;
      color: #676873;
      ;
      line-height: 24px;
    }

    /* .enhance-arrow-down {
            font-size: 2.5em; 
            color: #ccc; 
            margin: 15px 0; 
            display: block;
            text-align: center;
            transform: rotate(0deg); 
            line-height: 0.5;
        }

        .enhance-arrow-down::after {
            content: '\2304'; 
        } */
    .enhance-step-card:last-of-type {
      margin-bottom: 0;
    }

    .enhance-arrow-down {
      margin-bottom: 10px;
    }





    /* table */

    .table_wrap {}

    .tab-container {
      max-width: 650px;
      margin: auto;
      font-family: "Inter", sans-serif;
      color: #222;
      text-align: center;
      margin: 0 auto;
    }

    .tab-title {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
    }

    .tab-subtitle {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .tab-table {
      width: 100%;
      border-collapse: collapse;
      background: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
    }

    .tab-header {
      display: flex;
      justify-content: space-between;
      padding-top: 10px;
      padding-bottom: 0px;
      background: #fff;
      font-weight: bold;
      padding-left: 0px;
      padding-right: 0px;
    }

    .tab-col {
      flex: 1;
      padding: 12px;
      font-size: 15px;
      display: flex;
      align-items: center;
      text-align: left;
      justify-content: center;
      line-height: 20px;
    }

    .tab-col-1 {
      flex: 1;
      justify-content: flex-start;
      padding-left: 15px;
    }

    .tab-col-2,
    .tab-col-3 {
      flex-direction: column;
    }

    .tab-img {
      width: 60px;
      margin-bottom: 8px;
    }

    .tab-pill-icon {
      font-size: 24px;
      margin-bottom: 6px;
    }

    .tab-product-name {
      font-weight: bold;
      font-size: 16px;
    }

    .tab-row {
      display: flex;
      height: 70px;
    }

    .tab-bg {
      background-color: #fff;
    }

    .tab-check {
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 16px;
    }

    .table_wrap {
      padding: 30px 0;
    }

    .tt_bg {
      background-color: #d5ecfd;
    }

    .t1 {
      background-color: #c5dced;
    }

    .t3 {
      background: #fff !important;
    }

    .tab-col-2 {
      border-radius: 8px 8px 0 0;
    }

    .tbold {
      font-weight: 700;
    }

    .fl2 {
      flex: 2;
      text-align: left;
      justify-content: flex-start;
    }

    .dol_br {
      display: none;
    }

    .tab-pill-icon {
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media only screen and (max-width:480px) {
      .tab-col {
        padding: 5px;
        font-size: 13px;
      }

      .tab-product-name {
        font-size: 14px;
        text-align: center;
      }

      .dol_br {
        display: block;
      }
    }



    /* testimonial_css */


    .test-section {
      width: 100%;
      max-width: 750px;
      /* Adjusted to visually match the width in the image */
      text-align: center;
    }

    .test-title {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
      margin: 0 auto 4px;
      max-width: 400px;
      font-size: 20px;
    }

    .test-subtitle {
      font-weight: 700;
      color: #676873;
      margin: 0 auto 15px;
      text-align: center;
      line-height: 1.38;
      max-width: 400px;
    }

    .test-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      margin-bottom: 25px;
      /* Space between cards */
      text-align: left;
    }

    .test-card:last-child {
      margin-bottom: 0;
    }

    .test-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      gap: 15px;
    }

    .test-user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #e0e0e0;
      /* Placeholder background */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      color: #666;
      flex-shrink: 0;
      /* Prevent shrinking */
    }

    .test-user-avatar::before {
      content: '👤';
      /* Unicode user icon */
    }

    .test-stars {
      display: flex;
      font-size: 1.4em;
      color: #FFD700;
      /* Gold color for filled stars */
      letter-spacing: 2px;
      /* Space between stars */
      line-height: 1;
      /* Adjust line height for stars */
    }

    .test-stars .filled {
      color: #FFD700;
      /* Gold */
    }

    .test-stars .empty {
      color: #ccc;
      /* Grey for empty stars */
    }

    .test-reviewer-name {
      font-size: 1.1em;
      font-weight: 500;
      color: #333;
      margin-left: 10px;
      /* Space between stars and name */
    }

    .test-text {
      font-size: 15px;
      line-height: 23px;
      color: #1c1c28;
    }

    /* Specific card colors as seen in the image */
    .test-card.test-sam {
      background-color: #cfeacb;
      /* Light green/yellowish tint */
    }

    .test-card.test-bob {
      background-color: #f5f7fa;
      /* Light green/yellowish tint */
    }

    .item {
      max-width: 600px;
      margin: 0 auto;
    }

    .owl-nav {
      display: none;
    }

    .owl-dots {
      margin: 8px 0;
    }

    .test-john {
      background-color: #e6f2fb;
    }

    .test-dave {
      background-color: #eeefc0;
    }

    .owl-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      /* space between dots */
      margin-top: 20px;
    }

    .owl-dot {
      width: 12px;
      height: 12px;
      background-color: #efefef !important;
      /* default dot color */
      border-radius: 50%;
      border: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      padding: 0;
      cursor: pointer;
    }

    .owl-dot:hover {
      background-color: #efefef !important;
    }

    .owl-dot.active {
      background-color: #3a9df7 !important;
      ;
      /* active dot color */
      transform: scale(1.2);
      /* optional effect */
    }

    .testimonial_wrapper {
      margin-bottom: 30px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
    }

    @media only screen and (max-width:480px) {
      .item {
        width: 95%;
      }
    }















    .ban-container1 {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 40px 55px;
      max-width: 650px;
      margin: auto;
      flex-wrap: wrap;
      background: url("https://assets.checkoutchamp.com/Funnel/assets/images/49f205c9-1855-48de-9e5d-280a11667374/afc2d4e7-89b2-4c32-a674-8381b88f828e/male_bg.jpg");
      background-size: 300px;
      background-repeat: no-repeat;
      background-position: bottom right;
      position: relative;
    }

    .product_image1 {
      position: absolute;
      right: 130px;
      bottom: 5px;
      width: 95px;
      height: 195px;
    }

    .ban_content_wrapper1 {
      max-width: 450px;
    }

    .ban-heading1 {
      font-size: 32px;
      font-weight: bold;
      line-height: 1.3;
    }

    .ban-heading1 span {
      color: #3A78E3;
    }

    .ban-subtext1 {
      color: #676873;
      font-size: 16px;
      margin: 20px 0;
      max-width: 300px;
    }

    .ban-list1 {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .ban-list1 li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 16px;
    }

    .ban-list1 li img {
      width: 32px;
      height: 32px;
      margin-right: 10px;
    }



    @media only screen and (max-width:575px) {
      .ban-container1 {
        background: url("https://assets.checkoutchamp.com/Funnel/assets/images/49f205c9-1855-48de-9e5d-280a11667374/afc2d4e7-89b2-4c32-a674-8381b88f828e/male_bg1.jpg");
        background-repeat: no-repeat;
        background-size: 315px;
        padding: 40px 25px;
        background-position: center right;
      }

      .product_image1 {
        right: 115px;
        bottom: 20px;
        width: 70px;
      }

      .ban_content_wrapper1 {
        max-width: 320px;
      }

      .ban-heading1 {
        font-size: 28px;
        font-weight: bold;
        line-height: 32px;
      }

    }






    @media only screen and (max-width: 480px) {
      .product_image1 {
        right: 72px;
        bottom: 30px;
        width: 65px;
      }

      .ban-container1 {
        background-size: 215px;
      }

      .ban-subtext1 {
        color: #676873;
        font-size: 15px;
        margin: 16px 0;
        max-width: 200px;
      }

      .ban_content_wrapper1 {
        max-width: 220px;
      }

      .ban-heading1 {
        font-size: 20px;
        font-weight: bold;
        line-height: 28px;
      }

      .ban-list1 li {
        font-size: 12px;
        margin-bottom: 12px;
      }

      .ban-list1 li img {
        width: 25px;
        height: 25px;
      }
    }

    @media only screen and (max-width:420px) {

      .product_image1 {
        right: 52px;
        bottom: 30px;
        width: 60px;
      }

      .ban-container1 {
        background-size: 175px;
      }

    }










    /* faq_css */

    .faq_wrapper {
      background-color: #f5f7fa;
    }

    .faq-container {
      max-width: 600px;
      margin: 0 auto;
      font-family: "Inter", sans-serif;
      padding: 20px;
      color: #333;
    }

    .faq-title {
      text-align: center;
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 5px;
    }

    .faq-subtitle {
      text-align: center;
      color: #666;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .faq-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .faq-icon {
      background-color: #e6f0fd;
      border-radius: 8px;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      color: #3184e4;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .faq-content {
      flex: 1;
    }

    .faq-question {
      color: #3a9df7;
      display: block;
      margin-bottom: 8px;
      line-height: 1.4;
      font-size: 20px;
    }

    .faq-answer {
      font-size: 17px;
      line-height: 23px;
    }

    /* footer_css */

    .footer-container {
      max-width: 800px;
      margin: 40px auto 100px;
      text-align: center;
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #444;
      padding: 20px;
    }

    .footer-secure {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      gap: 10px;
    }

    .footer-lock-icon {
      width: 40px;
      height: 40px;
    }

    .footer-secure-title {
      font-size: 20px;
      font-weight: bold;
      margin: 0;
      color: #444;
    }

    .footer-secure-subtitle {
      font-size: 14px;
      margin: 0;
      color: #666;
    }

    .footer-dhl-logo {
      width: 100px;
    }

    .footer-disclaimer {
      font-size: 12px;
      color: #444;
      line-height: 1.6;
      text-align: justify;
      max-width: 700px;
      margin: 20px auto;
    }

    .footer-links {
      margin-top: 20px;
    }

    .footer-links a {
      color: #0045c5;
      text-decoration: none;
      margin: 0 5px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-container p:last-of-type {
      margin-top: 10px;
      font-size: 13px;
      color: #555;
    }




    @media only screen and (max-width:480px) {
      .mb_hd {
        display: none;
      }
    }

    .fixed-btn {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 7px 15px;
      border: solid #ddd;
      border-width: 1px 0;
      text-align: center;
      z-index: 9;
      display: flex;
      justify-content: center;
    }

    .rush-btn {
      cursor: pointer;
      width: 345px;
      max-width: 100%;
      text-transform: uppercase;
      color: #fff;
      font-weight: 700;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      line-height: 24px;
      background: #3dc051;
      padding: 0 5px;
      border-radius: 4px;
      box-shadow: 0 1px 2px #0000001a, 0 3px 3px #00000017, 0 7px 4px #0000000d, 0 12px 5px #00000003;
    }

    .rush-btn:after {
      display: inline-block;
      vertical-align: middle;
      width: 19px;
      height: 16px;
      content: "";
      background: url("https://assets.checkoutchamp.com/Funnel/assets/images/49f205c9-1855-48de-9e5d-280a11667374/afc2d4e7-89b2-4c32-a674-8381b88f828e/arw_rgt.svg");
      margin: -2px 0 0 8px;
    }


    .header_cont{
      max-width: 650px;
      margin:0 auto;
    }