.strong {
    font-weight: bold;
    color:#212529;
  }
  
  .how-it-works-section {
    background-color: #f9f9f9;
    padding: 10px 20px;
  }

  @media (min-width: 1024px) {
    .how-it-works-section {
      width: 100vw;
      height: auto;
    }
  }
  
  .how-it-works-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
  }
  
  /* Step Container */
  .process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .process .content-col {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  
  /* Common circle-icon styling */
.circle-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 auto 1rem auto;
    color: #212529;
  }
  
  .circle-icon-container i {
    font-size: 2rem;
    color:#212529 !important;
  }
  
  /* Arrow column (base) */
  .arrow-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem !important;
  font-weight: bolder !important;
  color: #212529;
  text-shadow: 1px 1px 0 #212529;
  flex: 0 0 auto;
  }
  
  /* Arrow icons shared styles */
  .arrow-col i {
    font-size: 3rem;
    font-weight: 900;
    color: #212529;
    text-shadow: 1px 1px 0 #212529;
  }
  
  /* Show right arrow only on desktop */
  .arrow-col .fa-arrow-right {
    display: none;
  }
  
  @media (max-width: 1023px) {
    .process {
      flex-direction: column;
      align-items: center;
    }
  
    .process .content-col,
    .process .arrow-col {
      width: 100%;
      max-width: 500px;
      margin-bottom: 1rem;
    }

    .arrow-col {
      margin-bottom: 24px !important;
    }
  
    .arrow-col .fa-arrow-right {
      display: none !important;
    }
  
    .arrow-col .fa-arrow-down {
      display: block !important;
    }

  }
  @media (min-width: 1024px) {
    .arrow-col {
      flex-direction: row;
      align-items: center;
      height: 110px;
      
    }
  
    .arrow-col .fa-arrow-right {
      display: block;
    }
  
    .arrow-col .fa-arrow-down {
      display: none;
    }
  }



  .py-5{
    margin-bottom: 0px !important;
  }

  .mb-5{
    margin-bottom: 0px !important;
  }



  .section-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
  
  .final-description {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    line-height: 1.6;
  }
  
  .track-btn {
    display: inline-block;
    background-color: #212529;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .track-btn:hover {
    background-color: #444;
    color: #fff;
  }
  
  .process > .d-flex {
    margin-bottom: 1rem;
  }
  
  .mb-4{
    margin-bottom: 0px !important;
  }

  .mt-4{
    margin-top: 0px !important;
  }