
    /* Base styles for the 8k8 Agent page */
    .page-8k8-agent {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    .page-8k8-agent__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-8k8-agent__hero-section {
      background-color: #0d47a1; /* Dark blue, matching casino theme */
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Small padding-top to account for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-8k8-agent__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-agent__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .page-8k8-agent__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffeb3b; /* Accent yellow */
    }

    .page-8k8-agent__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    .page-8k8-agent__cta-button {
      display: inline-block;
      background-color: #4CAF50; /* Green for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-agent__cta-button:hover {
      background-color: #45a049;
    }

    /* Section Styling */
    .page-8k8-agent__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-agent__section:nth-child(even) {
      background-color: #f0f4f8; /* Light blue-gray for alternating sections */
    }

    .page-8k8-agent__section-title {
      font-size: 2.5em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-agent__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffeb3b;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* Benefits List */
    .page-8k8-agent__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-agent__benefit-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 5px solid #ffeb3b;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-agent__benefit-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-agent__benefit-icon {
      width: 150px; /* Min size 200x200px requirement, so 150px is for the container */
      height: 150px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-agent__benefit-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 15px;
    }

    .page-8k8-agent__benefit-description {
      font-size: 1em;
      color: #555;
    }

    /* How-to Steps */
    .page-8k8-agent__steps-list {
      list-style: none;
      counter-reset: step-counter;
      padding: 0 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-agent__step-item {
      background-color: #fff;
      margin-bottom: 25px;
      padding: 25px 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      position: relative;
      border-left: 6px solid #ffeb3b;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-agent__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #0d47a1;
      color: #fff;
      font-size: 1.5em;
      font-weight: bold;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      margin-right: 25px;
      box-shadow: 0 0 0 5px rgba(13, 71, 161, 0.3);
    }

    .page-8k8-agent__step-title {
      font-size: 1.6em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-8k8-agent__step-description {
      font-size: 1.1em;
      color: #555;
    }

    /* FAQ Section */
    .page-8k8-agent__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-agent__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-agent__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #0d47a1;
      color: #fff;
      cursor: pointer;
      user-select: none;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-agent__faq-question:hover {
      background-color: #1a56bb;
    }

    .page-8k8-agent__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #ffeb3b;
    }

    .page-8k8-agent__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-agent__faq-item.active .page-8k8-agent__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-8k8-agent__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      background-color: #fefefe;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    /* General Paragraphs */
    .page-8k8-agent__content-paragraph {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
      padding: 0 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-agent__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-agent__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-agent__section-title {
        font-size: 2em;
      }

      .page-8k8-agent__benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-8k8-agent__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
      }

      .page-8k8-agent__steps-list {
        padding: 0 10px;
      }

      .page-8k8-agent__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
      }

      .page-8k8-agent__step-item::before {
        margin-bottom: 15px;
        margin-right: 0;
      }

      .page-8k8-agent__faq-list {
        padding: 0 10px;
      }

      .page-8k8-agent__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
      }

      .page-8k8-agent__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-agent__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-agent__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important;
      }

      .page-8k8-agent__faq-item.active .page-8k8-agent__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-agent__content-paragraph {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-agent__hero-title {
        font-size: 2em;
      }
      .page-8k8-agent__hero-description {
        font-size: 1em;
      }
      .page-8k8-agent__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-agent__section-title {
        font-size: 1.8em;
      }
      .page-8k8-agent__step-title {
        font-size: 1.4em;
      }
      .page-8k8-agent__step-description {
        font-size: 1em;
      }
      .page-8k8-agent__faq-question h3 {
        font-size: 1em;
      }
    }
  