hr{
  height: 1px;
  background-color: #ccc;
  border: none;
}

.hidden-text {
  display: none;
  margin-top: 10px;
  transition: max-height 0.5s ease;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
}

.show {
  display: block !important;
  max-height: 1000px; 
}

.header {
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
  display: flex;
  background-color: #333;
  color: white;
  padding:10px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
      
.info-service{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  width: 90%;
  max-width: 400px;
  text-align: left;
  margin-bottom: 32px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.info-service-p{
  font-family: "Mona Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

.process-wrap {
  display: flex; 
  width: 100%;
  gap:34px;
  align-items: center;
  justify-content: center; 
}

.package{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  width: 60%;
  max-width: 350px;
  position: relative; 
  z-index: 2;
  border-radius: 5px;
  padding: 50px;
  margin-bottom: 25px;
  background: rgba( 255, 255, 255, 0.3 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 0px );
  -webkit-backdrop-filter: blur( 0px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  box-shadow: 0 0 18px 3px rgba(0, 0, 0, .3);
} 

.package:hover{
  border: 3px solid #f5faff;
}

.package h1{
  font-size: 33px;
}

.price{
  font-weight: 600;
  font-size: 25px;
}

.decimal-price{
  color: #838383;
  font-size: 18px;
}

.rate{
  color: #8e8e8e;
}

.LE{
  border: 1px solid #C9C9C9; 
  border-radius: 5px; 
  padding: 7px 13px;
}

.btn-package {
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s; 
}

.btn-package:hover {
  background-color: #505050; 
  color: #ffffff; 
  border: 1px solid white;
}

.process-wrap.active-step1{
  position: relative;
}

.btn-container{
  margin-top: 37px;
  text-align: center;
  width: 100%;
}

.fa-caret-right,
.fa-caret-down{
  margin-left: 10px;
  cursor: pointer;
}
.error {
  width: 200px;
  height: 50px;
  padding: 10px; 
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  border-radius: 5px;
  position: fixed; 
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 1000; 
}


@media only screen and (max-width: 600px) {
  .process-wrap {
    display: flex;
    margin: auto;
    justify-content: center; 
    flex-wrap: wrap;
    width: 90% ;
  }
  .package{
    width: 90%;
    padding: 40px;
  }
  .LE{
    padding: 4px 10px;
  }
}