.Welcome-Header {
    text-align: center;
    margin-top: 150px; /* Adjust as needed for space above */
    margin-bottom: 100px; /* Adjust as needed for space below */
  }
  
  .Welcome-Header h1 {
    margin: 0;
    color: #333;
    font-size: 38px; /* Adjust as needed */
    font-weight: bolder;
  }
  
  .Welcome-Header h2 {
    margin: 10px 0; /* Adjust as needed */
    color: #666;
    font-size: 20px; /* Adjust as needed */
  }


  .divider {
    width: 100%;
    height: 0.5px;
    background-color: #9e9e9e !important; /* Divider color */
    margin: 20px 0; /* Adjust margin as needed */
  }

  /* Optional: Add animation to the divider */
  .divider::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: #a8a8a8 !important; /* Divider color */
    transition: width 0.5s ease; /* Animation duration */
  }
  
  .divider:hover::before {
    width: 100%; /* Expand the width on hover */
  }

  