 body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff; /* Removed gradient */
    color: #333; /* Darker text for white background */
  }

  .hero {
    padding: 100px 20px;
    text-align: center;
    background-color: #f7f7f7; /* Light gray section bg */
  }

  .hero h1 {
    font-size: 48px;
    font-weight: bold;
    color: #222;
  }

  .hero p {
    font-size: 18px;
    color: #555;
  }

  .section-title {
    text-align: center;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 32px;
  }

  .service-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
    height: 100%;
  }

  .service-box:hover {
    transform: translateY(-5px);
    background: #f1f1f1;
  }

  .service-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .service-box h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
  }

  .service-box p {
    font-size: 14px;
    color: #666;
  }