
    /* Base styles for the page, scoped to page-8k8-3 */
    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Account for potential fixed header */
    }

    .page-8k8-3__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
      background-color: #2a0a5e; /* Deep purple */
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

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

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-3__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-3__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #2a0a5e; /* Deep purple */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-3__cta-button:hover {
      background-color: #ffe066;
      transform: translateY(-3px);
    }

    /* Section Styles */
    .page-8k8-3__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-3__section-title {
      font-size: 2.2em;
      color: #2a0a5e;
      margin-bottom: 25px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__section-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

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

    .page-8k8-3__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-3__feature-icon {
      width: 250px; /* Minimum 200x200 */
      height: 150px; /* Minimum 200x200 */
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 5px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-3__feature-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Steps Section */
    .page-8k8-3__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-3__step-item {
      background-color: #f0f0f0;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-3__step-title {
      font-size: 1.4em;
      color: #2a0a5e;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__step-description {
      color: #555;
    }

    /* Security Section */
    .page-8k8-3__security-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .page-8k8-3__security-image-wrapper {
      flex: 1 1 40%;
      min-width: 300px;
      text-align: center;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-8k8-3__security-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-8k8-3__security-text-content {
      flex: 1 1 50%;
      min-width: 300px;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
      background-color: #f0f0f0;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-3__faq-title {
      font-size: 2.2em;
      color: #2a0a5e;
      margin-bottom: 25px;
      text-align: center;
    }

    .page-8k8-3__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-8k8-3__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #ffcc00; /* Gold */
      color: #2a0a5e; /* Deep purple */
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-3__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__faq-question:hover {
      background-color: #ffe066;
    }

    .page-8k8-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually */
    }

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

    .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-3__container {
        padding: 15px;
      }

      .page-8k8-3__hero-section {
        padding: 60px 15px;
      }

      .page-8k8-3__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-3__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-3__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-3__section {
        padding: 30px 20px;
      }

      .page-8k8-3__section-title,
      .page-8k8-3__faq-title {
        font-size: 1.8em;
      }

      .page-8k8-3__feature-list {
        grid-template-columns: 1fr;
      }

      /* List Item Mobile Responsive */
      .page-8k8-3__feature-item,
      .page-8k8-3__step-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;
        overflow-wrap: break-word !important;
      }

      .page-8k8-3__feature-list,
      .page-8k8-3__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-3__steps-list {
        flex-direction: column;
      }

      .page-8k8-3__step-item {
        flex: 1 1 100%;
      }

      .page-8k8-3__security-content {
        flex-direction: column;
      }

      .page-8k8-3__security-image-wrapper,
      .page-8k8-3__security-text-content {
        min-width: unset;
        width: 100%;
      }

      .page-8k8-3__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-8k8-3__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-3__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-3__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-3__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8-3 img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
    .page-8k8-3__image-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }
  