/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 100:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  /* Section Background */
  .pt-2023 {
      background: linear-gradient(135deg, #F47222, #FF8C42);
      padding: 100px 15px; /* Increased top and bottom spacing */
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  section.pt-2023 {
      padding-bottom: 0px !important;
  }

  /* Centered Container */
  .container {
      width: 100%;
      max-width: 1200px;
      padding: 50px 20px;
  }

  /* Bullet List */
  .bullet-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
  }

  .bullet-list li {
      font-weight: bold;
      color: white;
      position: relative;
      padding-left: 20px;
      display: flex;
      align-items: center;
      white-space: nowrap;
      font-size: 18px;
  }

  /* Custom Bullet Styling */
  .bullet-list li::before {
      content: '\2022';
      color: white;
      font-weight: bold;
      font-size: 28px;
      margin-right: 8px;
  }

  /* ======= MOBILE ONLY FIXES (PC styles remain unchanged) ======= */
  @media (max-width: 768px) {

     .container {
        padding: 30px 15px; /* Adjusted spacing for better layout */
    }
      .pt-2023 {
          padding: 0px 10px;
      }
      .bullet-list {
          flex-direction: column;
          align-items: normal;
      }
      .bullet-list li {
          font-size: 16px;
          padding-left: 15px;
          white-space: normal;
      }
      .bullet-list li::before {
          font-size: 22px;
      }
  }

  @media (max-width: 480px) {

    .container {
        padding: 20px 10px; /* Further optimized spacing for small screens */
    }
      .pt-2023 {
          padding: 0px 10px;
      }
      .bullet-list li {
          font-size: 14px;
      }
      .bullet-list li::before {
          font-size: 18px;
      }
  }
</style>