/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 51:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #333;
  }

  .image-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 40px 20px;
  }
  .image-text-grid .card {
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .image-text-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .image-text-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .image-text-grid h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  .image-text-grid p {
    font-size: 14px;
    color: #555;
  }
</style>