
    /* Base styles for the page */
    .page-promo-code-jilihot {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, expecting body padding for header offset */
    }

    .page-promo-code-jilihot__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    /* Headings */
    .page-promo-code-jilihot__heading-primary {
      font-size: 3.2em;
      color: #ffcc00; /* Gold accent color */
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
    }

    .page-promo-code-jilihot__heading-secondary {
      font-size: 2.2em;
      color: #ffffff;
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-promo-code-jilihot__heading-tertiary {
      font-size: 1.6em;
      color: #ffcc00;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    /* Paragraphs */
    .page-promo-code-jilihot__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Sections */
    .page-promo-code-jilihot__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #222; /* Slightly lighter dark for sections */
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-promo-code-jilihot__section--dark {
      background-color: #1a1a1a;
    }

    /* Hero Section */
    .page-promo-code-jilihot__hero-section {
      position: relative;
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 80px 0;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      margin-bottom: 30px;
    }

    .page-promo-code-jilihot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4; /* Make background image subtle */
    }

    .page-promo-code-jilihot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-promo-code-jilihot__hero-tagline {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    /* Button styles */
    .page-promo-code-jilihot__button {
      display: inline-block;
      background-color: #ffcc00; /* Gold button */
      color: #1a1a1a; /* Dark text on gold */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
    }

    .page-promo-code-jilihot__button:hover {
      background-color: #e6b800; /* Slightly darker gold on hover */
      transform: translateY(-2px);
    }

    /* Image Styling */
    .page-promo-code-jilihot__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 30px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-promo-code-jilihot__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    /* List Styling */
    .page-promo-code-jilihot__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-promo-code-jilihot__list-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, accounting for gap */
      box-sizing: border-box;
      min-width: 280px; /* Minimum width for list items */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-promo-code-jilihot__list-item strong {
      color: #ffcc00;
    }

    .page-promo-code-jilihot__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
    }

    .page-promo-code-jilihot__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-promo-code-jilihot__step-item:hover {
      transform: translateY(-5px);
    }

    .page-promo-code-jilihot__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ffcc00;
      margin-right: 20px;
      background-color: #3a3a3a;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      box-shadow: inset 0 0 8px rgba(255, 204, 0, 0.5);
    }

    .page-promo-code-jilihot__step-content {
      flex-grow: 1;
    }

    .page-promo-code-jilihot__step-content h3 {
      margin-top: 0;
      color: #ffffff;
      font-size: 1.4em;
    }

    .page-promo-code-jilihot__step-content p {
      margin-bottom: 0;
      font-size: 1.05em;
    }

    /* Promo Offers List */
    .page-promo-code-jilihot__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-promo-code-jilihot__promo-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-promo-code-jilihot__promo-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-promo-code-jilihot__promo-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-promo-code-jilihot__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-promo-code-jilihot__promo-item:hover .page-promo-code-jilihot__promo-image {
      transform: scale(1.05);
    }

    .page-promo-code-jilihot__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-promo-code-jilihot__promo-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-promo-code-jilihot__promo-description {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-promo-code-jilihot__promo-button-wrapper {
      text-align: center;
      margin-top: auto; /* Push button to the bottom */
    }

    /* FAQ Section */
    .page-promo-code-jilihot__faq-section {
      padding: 40px 0;
      background-color: #1a1a1a;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-promo-code-jilihot__faq-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-promo-code-jilihot__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-promo-code-jilihot__faq-item:hover {
      background-color: #333;
    }

    .page-promo-code-jilihot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-promo-code-jilihot__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-promo-code-jilihot__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-promo-code-jilihot__faq-item.active .page-promo-code-jilihot__faq-toggle {
      transform: rotate(45deg);
    }

    .page-promo-code-jilihot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
    }

    .page-promo-code-jilihot__faq-item.active .page-promo-code-jilihot__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-promo-code-jilihot__heading-primary {
        font-size: 2.8em;
      }
      .page-promo-code-jilihot__heading-secondary {
        font-size: 2em;
      }
      .page-promo-code-jilihot__list-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
      }
    }

    @media (max-width: 768px) {
      .page-promo-code-jilihot {
        padding-top: 0 !important; /* Remove any padding-top if the root page class is used as a fallback */
      }
      .page-promo-code-jilihot__heading-primary {
        font-size: 2.2em;
      }
      .page-promo-code-jilihot__heading-secondary {
        font-size: 1.8em;
      }
      .page-promo-code-jilihot__heading-tertiary {
        font-size: 1.4em;
      }
      .page-promo-code-jilihot__paragraph,
      .page-promo-code-jilihot__list-item p,
      .page-promo-code-jilihot__step-content p,
      .page-promo-code-jilihot__promo-description,
      .page-promo-code-jilihot__faq-question h3,
      .page-promo-code-jilihot__faq-answer p {
        font-size: 1em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-promo-code-jilihot__hero-section {
        padding: 60px 0;
      }
      .page-promo-code-jilihot__hero-tagline {
        font-size: 1.2em;
      }
      .page-promo-code-jilihot__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-promo-code-jilihot__section {
        padding: 30px 0;
      }

      .page-promo-code-jilihot__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-promo-code-jilihot__list-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-promo-code-jilihot__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-promo-code-jilihot__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-promo-code-jilihot__step-content h3 {
        font-size: 1.3em;
      }

      .page-promo-code-jilihot__promo-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-promo-code-jilihot__promo-content {
        padding: 15px;
      }

      .page-promo-code-jilihot__promo-title {
        font-size: 1.3em;
      }

      .page-promo-code-jilihot__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-promo-code-jilihot__faq-question h3 {
        font-size: 1.1em;
      }

      .page-promo-code-jilihot__faq-answer {
        padding: 0 20px;
      }

      .page-promo-code-jilihot__faq-item.active .page-promo-code-jilihot__faq-answer {
        padding: 15px 20px !important;
      }

      .page-promo-code-jilihot__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-promo-code-jilihot__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-promo-code-jilihot__heading-primary {
        font-size: 1.8em;
      }
      .page-promo-code-jilihot__heading-secondary {
        font-size: 1.5em;
      }
      .page-promo-code-jilihot__hero-section {
        padding: 40px 0;
      }
      .page-promo-code-jilihot__hero-tagline {
        font-size: 1em;
      }
      .page-promo-code-jilihot__button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  