
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body {
        width: 100%;
        height: 100%;
        color: black;
        background-color: #f9fbfd;
      }

      .hero-section {
        padding-top: 9rem;
        padding-left: 5rem;
        padding-bottom: 5rem;
        background: linear-gradient(to right, #2e3192, #1d1e63);
        border-bottom: #f58220 solid 4px;
        margin-bottom: 12px;
      }

      .hero-section h1,
      p {
        color: white;
      }

      .h-shortDetail {
        background-color: rgba(212, 212, 212, 0.258);
        display: inline-block;
        padding: 6px 7px 6px 3px;
        padding-left: 20px;
        padding-right: 20px;
        /* border-radius: 9px; */
        border-left: 6px solid #f58220;
      }
      main {
        max-width: 80rem;
        color: black;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      main section p {
        color: black;
      }
      .short-note {
        background-color: white;
        padding: 12px;
        border: 2px solid rgba(180, 180, 180, 0.192);
        box-shadow: 0px 0px 6px rgba(118, 118, 118, 0.427);
        border-radius: 5px;
        max-width: 60rem;
      }

      section {
        margin-top: 3rem;
        width: 100%;
        max-width: 60rem;
      }

      section .top h2 {
        font-size: 1.5rem;
        padding-left: 10px;
        border-left: 4px solid #168794;
      }
      section .top p {
        font-size: 1rem;
      }
      ul ::marker {
        color: #f58220;
      }
      /* ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
} */
      .bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        flex-direction: row;
      }
      .top {
        margin-bottom: 30px;
      }
      .left {
        max-width: 50%;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .rightt {
        max-width: 50%;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .understanding .bottom {
        display: flex;
        flex-direction: column;
      }
      .understanding .bottom div {
        display: flex;
        flex-wrap: wrap;
        gap: 6rem;
      }

      .in-depth .bottom {
        display: flex;
        flex-direction: column;
      }
      .in-depth .bottom h3 {
        color: #168794;
        font-size: 1.2rem;
      }
      .in-depth .bottom p {
        font-size: 0.95rem;
        color: rgb(112, 112, 112);
        margin-bottom: 30px;
      }
      .f-c {
        background-color: #fff;
        margin-bottom: 1.8rem;
        padding: 1.6rem;
        width: 100%;
        border: 1.6px solid rgba(128, 128, 128, 0.247);
        box-shadow: 0 0 0.5px gray;
        border-radius: 6px;
      }
      .f-c h4 {
        font-size: 1.1rem;
      }
      .f-c p {
        font-size: 1rem;
        color: gray;
      }
      .s-m-cs {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 1rem;
      }
      .s-m-c {
        max-width: 49%;
        background-color: #fff;
        padding: 1.6rem;
        border-radius: 9px;
        border: 1.6px solid rgba(128, 128, 128, 0.116);
        box-shadow: 0 0 0.5px gray;
        padding-bottom: 10px;
      }
      .s-m-c p {
        margin-top: 1.2rem;
        font-size: 1rem;
        line-height: 1.3rem;
        color: gray;
      }
      .t-reh-bottom ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .t-reh-bottom ul li {
        font-size: 1.1rem;
        color: grey;
      }
      .t-reh-bottom {
        background-color: #fff;
        border-radius: 4px;
        padding: 1.7rem;
        padding-left: 10px;
        border: 1.7px solid rgba(128, 128, 128, 0.29);
        border-left: 4px solid #f58220;
      }

      /* Other Css */
      /* --- Why Choose Us Custom Stats Banner --- */
      .stats-banner {
        background-color: #006677;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
      }
      .stat-box {
        flex: 1;
        position: relative;
      }
      .stat-box:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.25);
      }
      .stat-number {
        color: #f58220; /* Matching your theme's orange */
        font-size: 1.75rem;
        font-weight: 800;
        display: block;
        margin-bottom: 2px;
      }
      .stat-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        color: #e0f2f1;
      }

      /* --- FAQ Accordion Layout --- */
      .faq-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
      }
      .faq-card {
        background: #ffffff;
        border: 1.6px solid rgba(128, 128, 128, 0.247);
        box-shadow: 0 0 0.5px gray;
        border-radius: 6px;
        padding: 1.6rem;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .faq-card:hover {
        transform: translateY(-2px);
        box-shadow: 0px 4px 10px rgba(118, 118, 118, 0.2);
      }
      .faq-question {
        color: #1d1e63; /* Matching your theme's deep navy */
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
      }
      .faq-answer {
        color: gray;
        font-size: 1rem;
        line-height: 1.5rem;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .stats-banner {
          flex-direction: column;
          gap: 20px;
        }
        .stat-box:not(:last-child)::after {
          display: none;
        }
        .c-we-treat .bottom {
          display: flex;
          flex-direction: column;
        }
        .c-we-treat .bottom .left {
          max-width: 100%;
        }
        .c-we-treat .bottom .rightt {
          max-width: 100%;
        }
        .understanding .bottom div {
          flex-direction: column;
          gap: 0px;
        }
        .understanding .bottom div .left {
          max-width: 100%;
        }
        .understanding .bottom div .rightt {
          max-width: 100%;
        }
        .s-m-c {
          max-width: 100%;
        }
        .hero-section {
          padding-bottom: 2rem;
          padding-left: 2rem;
        }
        .short-note {
          margin-top: 1rem;
        }
      }
    @media (max-width:1200px){
        .header-area .right ul li {
            margin-right: 0px;
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    