<section id="services-2" class="services-2 section light-background">
  <!-- Section Title -->
  <div class="container section-title" data-aos="fade-up">
    <h2><%= sectionTitle %></h2>
    <p><%= sectionSubtitle %></p>
  </div><!-- End Section Title -->

  <div class="container">
    <div class="row gy-4">
      <% services.forEach((service, index) => { %>
        <div class="col-md-6" data-aos="fade-up" data-aos-delay="<%= (index + 1) * 100 %>">
          <div class="service-item d-flex position-relative h-100">
            <i class="<%= service.icon %> icon flex-shrink-0"></i>
            <div>
              <h4 class="title"><a href="<%= service.link %>" class="stretched-link"><%= service.title %></a></h4>
              <p class="description"><%= service.description %></p>
            </div>
          </div>
        </div><!-- End Service Item -->
      <% }) %>
    </div>
  </div>
</section><!-- /Services 2 Section -->