
    /* Base styles for the page */
    .page-8k8-agent {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Space before footer */
      padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
    }

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

    /* Section styles */
    .page-8k8-agent__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-8k8-agent__section--dark {
      background-color: #e0e0e0; /* Light gray for contrast */
    }

    .page-8k8-agent__section-title {
      font-size: 2.5em;
      color: #007bff; /* Primary blue for titles */
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .page-8k8-agent__section-subtitle {
      font-size: 1.2em;
      color: #555;
      margin-bottom: 30px;
      text-align: center;
    }

    /* Hero Section */
    .page-8k8-agent__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:online casino,agent,partnership]') no-repeat center center / cover;
      color: #fff;
      padding: 100px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden; /* Ensure image doesn't overflow */
      box-sizing: border-box;
    }

    .page-8k8-agent__hero-content {
      max-width: 800px;
      text-align: center;
      z-index: 1;
    }

    .page-8k8-agent__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
      color: #ffc107; /* Gold for emphasis */
    }

    .page-8k8-agent__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

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

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

    /* Feature Grid (Why Partner) */
    .page-8k8-agent__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-agent__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-agent__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-agent__feature-icon {
      width: 200px; /* Minimum size requirement */
      height: auto; /* Maintain aspect ratio */
      margin-bottom: 20px;
      display: block; /* Ensure it takes its own line */
      object-fit: contain;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-agent__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-8k8-agent__feature-description {
      color: #666;
    }

    /* Image and Text Layout */
    .page-8k8-agent__content-row {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
      text-align: left;
    }

    .page-8k8-agent__content-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-agent__content-image-wrapper {
      flex: 1;
      min-width: 300px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-8k8-agent__content-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Responsive image */
      object-fit: cover;
    }

    .page-8k8-agent__content-text {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-agent__content-text h3 {
      font-size: 2em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-8k8-agent__content-text p {
      color: #555;
      margin-bottom: 15px;
    }

    /* Steps List */
    .page-8k8-agent__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-agent__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
      box-sizing: border-box;
    }

    .page-8k8-agent__step-number {
      font-size: 2.5em;
      color: #ffc107;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

    .page-8k8-agent__step-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-8k8-agent__step-description {
      color: #666;
    }

    /* FAQ Section */
    .page-8k8-agent__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-agent__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-8k8-agent__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      color: #333;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-agent__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #333;
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-8k8-agent__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
      font-weight: normal;
    }

    .page-8k8-agent__faq-item.active .page-8k8-agent__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
    }

    .page-8k8-agent__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: #555;
      box-sizing: border-box;
    }

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

    /* Call to Action Section */
    .page-8k8-agent__cta-section {
      background-color: #007bff; /* Blue background for CTA */
      color: #fff;
      padding: 60px 0;
      text-align: center;
      margin-top: 40px;
    }

    .page-8k8-agent__cta-section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-8k8-agent__cta-section-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

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

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

      .page-8k8-agent__content-row {
        flex-direction: column;
      }
      .page-8k8-agent__content-row:nth-child(even) {
        flex-direction: column; /* Reset order for smaller screens */
      }
      .page-8k8-agent__content-text {
        padding-top: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-agent__hero-section {
        padding: 80px 0;
        min-height: 400px;
      }
      .page-8k8-agent__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-agent__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-agent__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-agent__section {
        padding: 30px 0;
      }
      .page-8k8-agent__section-title {
        font-size: 1.8em;
      }
      .page-8k8-agent__section-subtitle {
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-8k8-agent__feature-grid,
      .page-8k8-agent__steps-list {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
      }
      .page-8k8-agent__feature-item,
      .page-8k8-agent__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-agent__feature-grid,
      .page-8k8-agent__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-agent__content-row {
        gap: 20px;
        margin-bottom: 40px;
      }
      .page-8k8-agent__content-image-wrapper {
        min-width: unset;
      }
      .page-8k8-agent__content-text h3 {
        font-size: 1.5em;
      }
      .page-8k8-agent__content-text p {
        font-size: 0.95em;
      }

      .page-8k8-agent__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-8k8-agent__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-agent__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-agent__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-agent__faq-item.active .page-8k8-agent__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-agent__cta-section-title {
        font-size: 2em;
      }
      .page-8k8-agent__cta-section-description {
        font-size: 1em;
      }
      
      /* Ensure text wrap for all elements */
      .page-8k8-agent p,
      .page-8k8-agent li,
      .page-8k8-agent h1,
      .page-8k8-agent h2,
      .page-8k8-agent h3,
      .page-8k8-agent h4,
      .page-8k8-agent h5,
      .page-8k8-agent h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      /* Image responsiveness specific */
      .page-8k8-agent img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-agent__content-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-agent__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-agent__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-agent__section-title {
        font-size: 1.5em;
      }
      .page-8k8-agent__faq-question {
        padding: 12px 15px;
        font-size: 0.9em;
      }
      .page-8k8-agent__faq-question h3 {
        font-size: 0.9em;
      }
      .page-8k8-agent__faq-toggle {
        font-size: 1.3em;
      }
      .page-8k8-agent__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-agent__faq-item.active .page-8k8-agent__faq-answer {
        padding: 10px 15px !important;
      }
    }
  