/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 119:2 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blog-diagonal-section (INDEX:8, SCOPED:FALSE) */
<style>
    .blog-featured-wrapper {
      display: flex;
      flex-direction: column;
      gap: 60px;
      margin: 60px auto;
      max-width: 1200px;
    }

    .blog-featured-item {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 8%;
    }

    .blog-featured-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .blog-featured-text {
      flex: 1;
      max-width: 500px;
    }

    .blog-featured-text h2 {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .blog-featured-text .meta {
      font-size: 14px;
      color: #888;
      margin-bottom: 20px;
    }

    .blog-featured-text p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    .blog-featured-text .read-more-btn {
      margin-top: 20px;
      display: inline-block;
      background: #d4e83f;
      color: #000;
      text-decoration: none;
      padding: 12px 28px;
      font-weight: bold;
      border-radius: 3px;
    }

    .blog-featured-image {
      flex: 1;
      max-width: 600px;
    }

    .blog-featured-image img {
      width: 100%;
      border-radius: 6px;
      display: block;
    }

    .blog-pagination {
      text-align: center;
      margin-top: 20px;
          margin-bottom: 30px;
    }

    .blog-pagination .pagination-box {
      display: inline-flex;
      border: 1px solid #ccc;
      padding: 10px 20px;
      gap: 20px;
      align-items: center;
      justify-content: center;
    }

    .blog-pagination a {
      text-decoration: none;
      color: #000;
      font-size: 18px;
      cursor: pointer;
    }

    .blog-pagination span {
      font-size: 16px;
    }

    .blog-pagination .disabled {
      color: #ccc;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .blog-featured-item {
        flex-direction: column !important;
      }

      .blog-featured-text,
      .blog-featured-image {
        max-width: 100%;
      }
    }
  </style>
/* END_SECTION:blog-diagonal-section */

/* START_SECTION:custom-faqs (INDEX:22, SCOPED:FALSE) */
.faq-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
  }

  .faq-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
  }

  .faq-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    overflow: hidden;
  }

  .faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
  }

  .faq-icon {
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #4CAFAD;
    padding: 10px;
    background: #E9F8F7;
    border-radius: 10px;
    font-weight: 500;
  }

  .faq-question.open .faq-icon {
    transform: rotate(180deg);
    padding: 10px;
    background: #E9F8F7;
    border-radius: 10px;
  }

  .faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-card.active .faq-answer {
    display: block;
  }
/* END_SECTION:custom-faqs */