.step-by-step {
  color: #fff;
  height: auto;
  padding-top: 36px;
  margin: 0;
  display: flex;
  flex-direction: column;    
  justify-content: center;
  align-items: center;
}



.step {
  background:  linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #1B3B6F;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 10px;
  padding: 20px;
}

.step img {
  width: 100px;
  height: 100px;
  margin: 20px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 20px; 
}

.step-text {
  color: #e1e2e1;
  text-align: left;
  font-size: clamp(1.5rem, 1.5vw, 2.25rem);
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.step-title {
  color: #e1e2e1;
  font-size: clamp(1.5rem, 1.5vw, 2.25rem);
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

.content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  margin-bottom: 10px;
  margin-left: 20px;
}

.book-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), #000;
  width: 80%;
  max-width: 350px;
  height: 60px;
  border-radius: 36px;
  margin: 20px auto;
  
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 1.75rem;
}

.book-btn:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%), #000;
  color: #fff;
}


.step-title-mobile{
  display: none;
}

  

@media (max-width: 768px) {

  .step{
    flex-direction: column;
    padding: 20px 10px;
    margin: 10px;
  }

  .step img{
    width: 80px;
    height: 80px;
  }

  .step-icon{
    width: 80px;
    height: 80px;
  } 
  
  .step-title-mobile {
    display: block;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
  }

  .step-title {
    display: none;
  }
  
  .step-icon-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

}

.responsive-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .step-icon .responsive-icon {
    width: 60px;
    height: 60px;
  }
}