/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 236:0 Unexpected "<"

**/
<style>
.img_cart {
  width: 25px;
}
.steps_css{
      width: 1140px;
    margin: auto;
}
  .steps_css {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1140px;
    margin: auto;
  }

  /* Tab content container */
  .tab-content-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: 100%;
  }

  .tab-content {
    background-color: #f4f7f6;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    display: none; /* Hide all content by default */
    opacity: 0; /* Start with 0 opacity for fade-in effect */
    text-align: center;
    transition: opacity 1s ease; /* Smooth fade effect */
  }

  .tab-content.active {
    display: block; /* Show the active content */
    opacity: 1; /* Full opacity for visible content */
  }

  /* Step navigation buttons */
  .tabs {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .tab-link {
    padding: 10px 20px;
    border: none;
    background-color: #f4f7f6;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .tab-link.active {
    background-color: #1c3d34;
    color: #fff;
  }

  .tab-link:not(.active) {
    color: #1c3d34;
  }

  .steps_css img {
    width: 70%;
  }

  .steps_img {
    width: 25%;
    padding-right: 20px;
  }

  .steps_text {
    text-align: left;
    width: 70%;
  }

  .tab-content.active {
    display: flex;
    align-items: center;
  }

  .steps_text p {
    color: darkgray;
    font-size: 14px;
    line-height: 23px;
  }


    /* Centering and section styling */
        .clinic-section {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f2f2f2;
            padding: 20px;
        }

        /* Content styling */
        .content {
            max-width: 800px;
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        /* Gradient text styling */
        .content h2, .content p {
               background: linear-gradient(135deg, #043c30, #b72900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, color 0.3s ease;
        }

        .content h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .content p {
            font-size: 16px;
            line-height: 1.6;
        }

        /* Enhanced hover effect */
        .content:hover {
            transform: translateY(-10px);
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
        }

        .content:hover h2, .content:hover p {
            transform: scale(1.02);
            text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
        }
.wrapper {
            max-width: 1140px;
  margin: auto;
            width: 100%;
            background-color: #fff;
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 20px;
            overflow: hidden;
        }

        .wrapper h1 {
            text-align: center;
            color: #2e7d32;
            font-size: 2.2em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Icon Styles */
        .icon_treatment {
            font-size: 1.5em;
            color: #2e7d32;
        }

        /* Card Styles */
        .info-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #f9fafb;
            margin: 20px 0;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
        }

        .info-card h2 {
            color: #00695c;
            margin-bottom: 10px;
        }

        .info-card p, .info-card ul {
            color: #555;
            line-height: 1.6;
            margin-left: 10px;
        }

        .wrapper ul {
            list-style-type: none;
            padding: 0;
        }

       .wrapper li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .info-card {
                flex-direction: column;
                text-align: center;
            }

            h1 {
                font-size: 1.8em;
            }
           #main_pd_text {
    display: block !important;
    width: 100% !important;
  }  
          #main_pd_id{
            width: 100% !important;
          }
        }
</style>