.best-service{
  width:98vw;
  margin-left:1vw;
  border:black 2px solid;
  border-radius:28px;
}
  .fare-section {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 10px;
    margin: 30px 0;
  }
  
  .fare-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: #222;
  }
  
  .fare-table-wrapper {
    overflow-x: auto;
  }
  
  .fare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .fare-table th,
  .fare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .fare-table th {
    background: #0055ff;
    color: white;
    font-weight: bold;
  }
  
  .fare-table tr:hover {
    background: #f1f1f1;
  }
  
  .fare-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: center;
  }
  
  /* Mobile Optimization */
  @media (max-width: 600px) {
    .fare-section h2 {
      font-size:
      
   .process-section {
    padding: 30px 20px;
    background: #ffffff;
    margin: 40px 0;
  }

  .process-section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
  }

  .process-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .process-step {
    background: #f7f9ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e6ff;
    transition:
  }
  
.process-section {
  padding: 30px 20px;
  background: #ffffff;
  margin: 40px 0;
}

.process-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  color: #222;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.process-step {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e0e6ff;
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 45px;
  height: 45px;
  background: #0055ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  font-weight: bold;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.process-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .process-section h2 {
    font-size: 22px;
  }
  
  .process-step {
    padding: 18px;
  }
  
  .process-step h3 {
    font-size: 18px;
  }
  
  .process-step p {
    font-size: 14px;
  }
}
