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

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

    .page-8k8-agent__section {
      padding: 60px 0;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-agent__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-agent__section-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-agent__section-title--dark {
      color: #ecf0f1;
    }

    .page-8k8-agent__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-8k8-agent__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-agent__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-agent__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* 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 program,success]') no-repeat center center/cover;
      color: #fff;
      padding: 10px 20px 100px 20px; /* Top padding 10px as per instruction, bottom padding for visual height */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
      border-radius: 0;
      box-shadow: none;
    }

    .page-8k8-agent__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #f1c40f;
    }

    .page-8k8-agent__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: #ecf0f1;
    }

    /* Features/Benefits Section */
    .page-8k8-agent__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-agent__feature-card {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-agent__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-agent__feature-icon {
      width: 200px; /* Min 200x200px as per instruction */
      height: 200px;
      margin-bottom: 20px;
      display: block;
      margin-left: 0;
      margin-right: auto;
    }

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

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

    /* How It Works Section */
    .page-8k8-agent__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-agent__step-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      position: relative;
    }

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

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

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

    /* Commission Section */
    .page-8k8-agent__commission-table {
      width: 100%;
      max-width: 800px;
      margin: 40px auto 0;
      border-collapse: collapse;
      background-color: #fefefe;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-agent__commission-table th,
    .page-8k8-agent__commission-table td {
      padding: 15px;
      border: 1px solid #ddd;
      text-align: left;
    }

    .page-8k8-agent__commission-table th {
      background-color: #e74c3c;
      color: #fff;
      font-weight: bold;
    }

    .page-8k8-agent__commission-table tr:nth-child(even) {
      background-color: #f2f2f2;
    }

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

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

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

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

    .page-8k8-agent__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-agent__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      width: 20px;
      text-align: center;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-agent__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #f9f9f9;
      color: #333;
    }

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

    .page-8k8-agent__faq-item.active .page-8k8-agent__faq-question {
      background-color: #c0392b;
    }

    /* Call to Action Section */
    .page-8k8-agent__cta-section {
      background-color: #f1c40f;
      color: #2c3e50;
      padding: 80px 20px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

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

    .page-8k8-agent__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-agent__cta-button {
      background-color: #2c3e50;
      color: #fff;
    }

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

    /* Image Styling */
    .page-8k8-agent__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 30px auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-agent__hero-title {
        font-size: 3em;
      }
      .page-8k8-agent__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-agent__section-title {
        font-size: 2.2em;
      }
      .page-8k8-agent__step-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
        max-width: calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-agent__container {
        padding: 15px;
      }
      .page-8k8-agent__section {
        padding: 40px 0;
        margin-bottom: 15px;
      }
      .page-8k8-agent__hero-section {
        padding: 10px 15px 80px 15px; /* Adjust top padding for mobile as well */
        min-height: 50vh;
      }
      .page-8k8-agent__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-agent__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-agent__section-title {
        font-size: 1.8em;
      }
      .page-8k8-agent__text {
        font-size: 1em;
      }
      .page-8k8-agent__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List item responsiveness */
      .page-8k8-agent__features-grid,
      .page-8k8-agent__steps-list {
        grid-template-columns: 1fr; /* Single column for features */
        display: block; /* For steps-list to manage width */
        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__feature-card,
      .page-8k8-agent__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-agent__commission-table {
        font-size: 0.9em;
        overflow-x: auto; /* Allow table to scroll horizontally */
        display: block;
      }
      .page-8k8-agent__commission-table th,
      .page-8k8-agent__commission-table td {
        padding: 10px;
      }
      .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;
      }
      .page-8k8-agent__faq-item.active .page-8k8-agent__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-8k8-agent__image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-agent__hero-title {
        font-size: 2em;
      }
      .page-8k8-agent__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-agent__section-title {
        font-size: 1.5em;
      }
      .page-8k8-agent__button {
        width: 100%;
        max-width: 250px;
      }
    }
  