.main-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto;
   }
   
   .step-list {
    display: flex;
    flex-direction: column;
   }
   
   .step-item {
    background-color: #e9ecef;
    padding: 15px 30px;
    margin: 5px 0;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
   }
   
   .step-item.current-step {
    background-color: #3467ff;
    color: white;
   }
   
   .info-box {
    max-width: 400px;
    margin-left: 20px;
   }
   
   .info-box h2 {
    font-size: 2.3rem;
    color: black;
    margin-bottom: 10px;
    font-family:  Roboto, sans-serif;
   }
   
   .info-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: black;
     font-family:  Roboto, sans-serif;
     text-align:justify;
   }
   
   .info-box ul {
    list-style-type: none;
    margin-bottom: 20px;
   }
   
   .info-box ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
   }
   
   .cta-btn {
    background-color: #3467ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
   }
   
   .cta-btn:hover {
    background-color: #2a55c9;
   }
   
   .image-holder img {
    border-radius: 10px;
    max-width: 300px;
   }