/* Our Process Block Styles */
.our-process-block {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
  }
  
  .our-process-block h2 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #333;
  }
  
  .our-process-block h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 150px; /* Adjust length as needed */
    height: 3px; /* Thickness of the underline */
    background-color: #9bb1bb;
    border-radius: 3px;
  }
  
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  /* Updated Process Step Styling */
  .process-step {
    background: #546672;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: none;
  }
  
  .process-step i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    display: block;
  }
  
  .process-step h3 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    text-align: center;
  }
  