/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 88:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .image-text-section {
      display: flex;
      justify-content: space-between;
      padding: 40px 0;
      height:426px;
    }

    .image-text-grid {
      display: flex;
      align-items: flex-start;
      gap: 100px;
      padding:30px;
      margin:20px;
      border-top: 1px solid #E7E6E5;
      border-bottom: 1px solid #E7E6E5;
    }

    .image-section {
      flex: 1 1 40%;
      max-width: 40%;
      padding-right: 50px;
      border-right: 1px solid #E7E6E5
    }

    .image-wrapper img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .text-section {
      width:100%;
    }

    .main-heading {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .text-content {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 20px;
    }

    .signature-area {
      margin-top: 20px;
      text-align: left;
    }

    .signature-heading {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .signature-text {
      font-size: 14px;
      color: #777;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .image-text-section {
        flex-direction: column;
      }

      .image-section, .text-section {
        max-width: 100%;
      }

      .signature-area {
        text-align: center; /* Centers the signature text on mobile */
      }
    }
  </style>