/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
  }
  
  .service-steps {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .service-steps h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .steps-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .step {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .step:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .step .icon {
    font-size: 2rem;
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
  
  .step h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 1rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .steps-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .step {
      width: 90%;
    }
  }