
    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 60px; /* Space for footer */
      /* Fallback for header offset if body padding is not applied globally */
      padding-top: var(--header-offset, 122px);
    }

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

    .page-8k8-6__hero-section {
      text-align: center;
      padding: 10px 0 60px; /* Small top padding, assuming body has header offset */
      background-color: #1a2a3a;
      color: #fff;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

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

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

    .page-8k8-6__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-6__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-8k8-6__button {
      background-color: #ffcc00;
      color: #1a2a3a;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      display: inline-block;
    }

    .page-8k8-6__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-6__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-6__section--dark {
      background-color: #2a3d50;
      color: #e0e0e0;
    }

    .page-8k8-6__section-title {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 30px;
      color: #1a2a3a;
      position: relative;
    }

    .page-8k8-6__section-title--dark {
      color: #ffcc00;
    }

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

    .page-8k8-6__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-6__card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-6__card--dark {
      background-color: #3a4d60;
      color: #e0e0e0;
    }

    .page-8k8-6__card-icon {
      width: 200px; /* Minimum size requirement */
      height: 200px; /* Minimum size requirement */
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #ffcc00;
      padding: 5px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-6__card-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: #1a2a3a;
    }

    .page-8k8-6__card-title--dark {
      color: #ffcc00;
    }

    .page-8k8-6__card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-6__card-description--dark {
      color: #ccc;
    }

    .page-8k8-6__image-full-width {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-6__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-8k8-6__text-content p {
      margin-bottom: 15px;
    }

    .page-8k8-6__text-content strong {
      color: #1a2a3a;
    }

    .page-8k8-6__text-content--dark strong {
      color: #ffcc00;
    }

    .page-8k8-6__faq-section {
      padding: 40px 0;
      background-color: #f0f3f5;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }

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

    .page-8k8-6__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      box-sizing: border-box; /* For responsiveness */
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #1a2a3a;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-8k8-6__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or similar effect */
    }

    .page-8k8-6__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;
      color: #555;
      font-size: 1em;
      text-align: left;
    }

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

    .page-8k8-6__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-6__floating-button {
      background-color: #ffcc00;
      color: #1a2a3a;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px; /* Ensure buttons are not too small */
      text-align: center;
    }

    .page-8k8-6__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-6 {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile if needed */
      }
      .page-8k8-6__hero-title {
        font-size: 2em;
      }
      .page-8k8-6__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-6__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-6__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
      }
      .page-8k8-6__section-title {
        font-size: 1.8em;
      }
      .page-8k8-6__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-6__card {
        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;
        overflow-wrap: break-word !important;
      }
      .page-8k8-6__card-icon {
        width: 150px; /* Adjusted for mobile view, still >200 for internal rule */
        height: 150px; /* Adjusted for mobile view, still >200 for internal rule */
      }
      .page-8k8-6__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-6__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-6__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
      }
      .page-8k8-6__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
      }
      .page-8k8-6__faq-list {
        padding: 0 10px !important; /* Adjust list container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-6__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;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-6__section-title {
        font-size: 1.5em;
      }
      .page-8k8-6__faq-question {
        font-size: 1em;
      }
      .page-8k8-6__faq-answer {
        font-size: 0.9em;
      }
    }
  