/* Basic styles */
.use-container {
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}
.welcome {
  text-align: justify;
  font-size: 18px;
  margin-top:50px;
} 
.use-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 50px;
}
.use-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
.use-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.use-step {
  text-align: center;
  width: 30%;
}
.step-number {
  font-size: 48px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  color: #fff;
  border-radius: 50%;
}
.step-one {
  background-color: #2c3e50; /* Coral */
}
.step-two {
  background-color: #00b887; /* Lime Green */
}
.step-three {
  background-color: #3675f1; /* Deep Sky Blue  */
}
.step-text p {
  font-size: 16px;
}
.step-text a {
  text-decoration: none;
  color: #00b887;
}
.step-text a:hover {
  text-decoration: underline;
}
.bg-feature {
    background: #252638;
    padding: 25px 25px;
    border-radius: 12px;
} 
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffff;
  }
.title.center {
    text-align: center;
  }
.bg-feature li::before {
    content: "✓";
    color: #79bcf3;
    padding-right: 10px;
    font-weight: bold;
}
.list_feature {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
.list_feature li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ffff;
  }
.tips-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: #333;
}
.tip-icon {
  font-size: 1.5rem;
  color: #007bff; /* Icon color */
}
.upper-tips {
  background-color: #f9f9f9; /* Light background for upper tips */
  padding: 1rem;
  border-radius: 8px;
}
.lower-tips {
  background-color: #eaf6ff; /* Subtle blue background for lower tips */
  padding: 1rem;
  border-radius: 8px;
}
.how-to-section{
	margin: 40px 0 20px 0;
}
.how-to-section h3{ 
        font-size: 28px;
	    font-weight: 500;
        color: #1e293b;
        margin: 20px 0 20px 0;	    
}
.ol-decorated {
    counter-reset: zone-counter;
    margin: 0;
    text-align: left;
    list-style: none;
    padding-left: 50px;
}
.ol-decorated li:before {
    border: 1px solid #515bd4;
    box-sizing: border-box;
    color: #515bd4;
    content: counter(zone-counter);
    counter-increment: zone-counter;
    display: block;
    height: 25px;
    left: -37px;
    position: absolute;
    text-align: center;
    width: 25px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.ol-decorated li {
    position: relative;
    line-height: 22px;
    margin-bottom: 15px;
}
.ol-decorated {
    counter-reset: zone-counter;
    margin: 0;
    text-align: left;
    list-style: none;
    padding-left: 50px;
}
/* Media Queries for Mobile */
@media (max-width: 768px) {
  /* Stack the steps vertically on smaller screens */
  .use-steps {
    flex-direction: column;
    align-items: center;
  }
  .use-step {
    width: 100%; /* Make steps wider on smaller screens */
    margin-bottom: 20px; /* Space between each step */
  }
  /* Center the step numbers for mobile */
  .step-number {
    font-size: 36px; /* Make the numbers smaller */
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  /* Adjust the font size for step descriptions */
  .step-text p {
    font-size: 16px;
  }
 .bg-feature {
      padding: 25px;
    } 
    .title {
      font-size: 30px;
    }
    .list_feature li {
      font-size: 18px;
    }
  }
  @media (max-width: 480px) {
    .use-title {
     font-size:   22px;
     font-weight: 600;
    }  
    .bg-feature {
     padding: 20px;
    }
    .title {
      font-size: 23px;
    }
    .list_feature li {
      font-size: 16px;
    }
   .how-to-section h3{ 
        font-size: 24px;
	    font-weight: 600;
} 
  } 