  .services-section {
      background-color: #f4f4f4;
      /* Light gray background */
      padding: 60px 0;
      text-align: center;
  }

  .services-section .section-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #333;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .service-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .service-item h3 {
      font-size: 1.8rem;
      color: #444;
      margin-top: 15px;
  }

  .service-item p {
      color: #666;
      font-size: 1rem;
  }

  .service-icon {
      font-size: 3rem;
      color: #3498db;
      /* Blue icon color */
  }

  /* Adjustments for smaller screens */
  @media screen and (max-width: 768px) {
      .services-grid {
          grid-template-columns: 1fr 1fr;
          /* Two columns on tablets */
      }
  }

  @media screen and (max-width: 480px) {
      .services-grid {
          grid-template-columns: 1fr;
          /* Single column on mobile */
      }
  }
.sub-service {
    text-align: left;
}
.sub-service {
    text-align: left;
}