services

{% schema %}
{
  "name": "Highlights Section",
  "settings": [],
  "presets": [
    {
      "name": "Highlights Section",
      "category": "Custom"
    }
  ]
}
{% endschema %}

<style>
  .highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-box {
    width: 30%;
    background: #000;
    color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
    background: #003bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-size: 24px;
  }

  .highlight-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .highlight-description {
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .highlight-box {
      width: 100%;
    }
  }
</style>

<div class="highlights-container">
  {% for i in (1..7) %}
    <div class="highlight-box">
      <div class="highlight-icon">⭐</div>
      <div class="highlight-title">HIGHLIGHT {{ i }}</div>
      <div class="highlight-description">
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet.
      </div>
    </div>
  {% endfor %}
</div>