    /* Services Section */
    #services {
      padding: 60px 0;
      background: #f8f9fa;
    }
    #services h3 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
      color: #212529;
    }
    .services-row {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
      gap: 25px;
      padding: 0 15px;
    }
    .service-box, .service-card {
      background: white;
      border-radius: 12px;
      padding: 25px 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      text-align: center;
      transition: all 0.3s ease;
      color: #212529;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }
    .service-box:hover, .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .service-box h5, .service-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #212529;
    }
    .service-box p, .service-description {
      color: #555;
      font-size: 0.95rem;
      flex-grow: 1;
    }
    .service-icon {
      font-size: 30px;
      color: #007bff; /* Blue icons */
      margin-bottom: 15px;
    }

    /* Styled List for Solutions */
    .styled-list {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      max-width: 700px;
      margin: 40px auto 60px auto;
      color: #333;
    }
    .styled-list ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .styled-list li {
      position: relative;
      padding-left: 35px;
      margin-bottom: 20px;
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }
    .styled-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: #0d6efd;
      font-weight: bold;
      font-size: 1.2rem;
      line-height: 1;
    }

    /* How It Works Section */
    #how-it-works {
      padding: 60px 0;
      background: #fff4e6;
      color: #212529;
    }
    #how-it-works h3 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
    }
    #how-it-works .step {
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      text-align: center;
      color: #212529;
    }
    #how-it-works .step i {
      color: #dc3545;
      margin-bottom: 15px;
    }

    /* Testimonials Section */
    #testimonials {
      background-color: #f0f0f0;
      padding: 60px 0;
      color: #212529;
    }
    #testimonials h3 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
    }
    #testimonials .card {
      border: none;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      color: #212529;
      height: 100%;
    }

    /* Footer */
    footer {
      background: #222;
      color: #fff;
      padding: 40px 0;
      text-align: center;
      font-size: 0.9rem;
    }
    footer a {
      color: #bbb;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .service-box, .service-card {
        padding: 20px;
      }
      .hero-section {
        padding: 40px 15px;
      }
    }