
    :root {
      --page-slot--primary-color: #fdd835; /* Yellow */
      --page-slot--secondary-color: #ffffff; /* White */
      --page-slot--background-color: #1a1a1a; /* Dark background */
      --page-slot--text-color: #ffffff; /* White text */
      --page-slot--accent-color: #ffeb3b; /* Brighter yellow for accents */
      --page-slot--dark-text: #333333; /* Dark text for contrast */
    }

    body {
      background-color: var(--page-slot--background-color);
      color: var(--page-slot--text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }

    .page-slot {
      max-width: 100%;
      margin: 0 auto;
      overflow-x: hidden;
      box-sizing: border-box;
      background-color: var(--page-slot--background-color);
    }

    .page-slot__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* For fixed header */
      background-color: #000;
      color: var(--page-slot--text-color);
    }

    .page-slot__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-slot__hero-content {
      padding: 0 15px 30px;
      text-align: center;
    }

    .page-slot__hero-title {
      font-size: 2.5em;
      color: var(--page-slot--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-slot__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-slot__cta-button {
      display: inline-block;
      background-color: var(--page-slot--primary-color);
      color: var(--page-slot--dark-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-slot__cta-button:hover {
      background-color: var(--page-slot--accent-color);
      transform: translateY(-2px);
    }

    .page-slot__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #1a1a1a;
      border-radius: 8px;
    }

    .page-slot__section-title {
      font-size: 2em;
      color: var(--page-slot--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-slot__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-slot--primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-slot__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-slot__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-slot__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-slot__card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

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

    .page-slot__card-title {
      font-size: 1.3em;
      color: var(--page-slot--primary-color);
      margin-bottom: 10px;
    }

    .page-slot__card-description {
      font-size: 0.95em;
      color: var(--page-slot--secondary-color);
      margin-bottom: 15px;
    }

    .page-slot__card-button {
      display: inline-block;
      background-color: var(--page-slot--primary-color);
      color: var(--page-slot--dark-text);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      border: none;
      cursor: pointer;
      margin-top: auto;
    }

    .page-slot__card-button:hover {
      background-color: var(--page-slot--accent-color);
    }

    .page-slot__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-slot__provider-logo {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-slot__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-slot__provider-image {
      max-width: 100%;
      height: 80px; /* Adjust height as needed, ensuring minimum 200x200 if it were a content image */
      object-fit: contain;
      display: block;
    }

    .page-slot__content-text {
      font-size: 1em;
      margin-bottom: 20px;
      color: var(--page-slot--secondary-color);
    }

    .page-slot__content-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-slot__content-list-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      font-size: 0.95em;
      color: var(--page-slot--secondary-color);
    }

    .page-slot__content-list-item::before {
      content: '✔';
      color: var(--page-slot--primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      line-height: 1;
    }

    .page-slot__promotion-banner {
      background-color: #333;
      padding: 30px 15px;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-slot__promotion-banner-title {
      font-size: 1.8em;
      color: var(--page-slot--primary-color);
      margin-bottom: 15px;
    }

    .page-slot__promotion-banner-text {
      font-size: 1.1em;
      color: var(--page-slot--secondary-color);
      margin-bottom: 25px;
    }

    .page-slot__floating-cta {
      position: sticky;
      bottom: 20px;
      left: 0;
      right: 0;
      z-index: 1000;
      text-align: center;
      padding: 10px 15px;
      background: linear-gradient(90deg, #fdd835, #ffeb3b);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      width: fit-content;
      margin: 20px auto;
      transform: translateY(0);
      transition: transform 0.3s ease-in-out;
      animation: page-slot__pulse 2s infinite;
    }

    @keyframes page-slot__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    .page-slot__floating-cta-button {
      background-color: #c62828; /* Red for urgency */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }

    .page-slot__floating-cta-button:hover {
      background-color: #d32f2f;
    }

    /* FAQ Section */
    .page-slot__faq-section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #1a1a1a;
      border-radius: 8px;
    }

    .page-slot__faq-list {
      margin-top: 30px;
    }

    .page-slot__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: var(--page-slot--primary-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-slot__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-slot__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      flex-grow: 1;
      text-align: left;
    }

    .page-slot__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #2a2a2a;
      color: var(--page-slot--secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-slot__faq-answer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-slot {
        padding: 0;
      }

      .page-slot__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-slot__hero-title {
        font-size: 1.8em;
      }

      .page-slot__hero-description {
        font-size: 1em;
      }

      .page-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-slot__section {
        padding: 30px 10px;
      }

      .page-slot__section-title {
        font-size: 1.6em;
      }

      .page-slot__grid {
        grid-template-columns: 1fr;
      }

      .page-slot__card-image {
        height: 180px;
      }

      .page-slot__card-title {
        font-size: 1.2em;
      }

      .page-slot__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-slot__provider-image {
        height: 60px;
      }

      .page-slot__content-list-item {
        padding: 12px;
        font-size: 0.9em;
      }

      .page-slot__promotion-banner-title {
        font-size: 1.5em;
      }

      .page-slot__promotion-banner-text {
        font-size: 0.95em;
      }

      .page-slot__floating-cta {
        bottom: 10px;
        padding: 8px 10px;
      }

      .page-slot__floating-cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
      }

      .page-slot__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-slot__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }

      .page-slot__faq-item.active .page-slot__faq-answer {
        padding: 15px !important;
      }
    }

    /* Image responsive optimization for all images within .page-slot */
    .page-slot img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-slot__card-image,
    .page-slot__provider-image {
      max-width: 100%;
      height: auto; /* Allow height to adjust */
      object-fit: contain; /* or cover depending on context */
    }
    .page-slot__provider-logo {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-slot img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-slot__card-image,
      .page-slot__provider-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-slot__provider-logo {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }
    }
  