
    .page-8k8-4 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

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

    .page-8k8-4__hero-section {
      text-align: center;
      padding: 80px 20px 60px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      padding-top: 10px; /* Small decorative top padding for hero */
    }

    .page-8k8-4__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric]');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }

    .page-8k8-4__hero-content {
        position: relative;
        z-index: 1;
    }

    .page-8k8-4__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-4__promo-button {
      display: inline-block;
      background-color: #ffc107; /* Yellow */
      color: #333;
      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;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-4__section--alt {
      background-color: #eef4f7;
    }

    .page-8k8-4__section-title {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 600;
    }

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

    .page-8k8-4__card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 250px;
      box-sizing: border-box;
    }

    .page-8k8-4__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-4__card-image {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
        object-fit: cover;
        border-radius: 8px;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-4__card-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 15px;
      font-weight: 600;
    }

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

    .page-8k8-4__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-4__step-item {
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-4__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #fdbb2d;
      margin-right: 25px;
      flex-shrink: 0;
      width: 60px;
      text-align: center;
    }

    .page-8k8-4__step-content {
      flex-grow: 1;
    }

    .page-8k8-4__step-title {
      font-size: 1.8em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: 600;
    }

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

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

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

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

    .page-8k8-4__faq-question:hover {
        background-color: #2b3e8a;
    }

    .page-8k8-4__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevents text selection from interfering with click */
        color: #fff;
    }

    .page-8k8-4__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        width: 25px;
        text-align: center;
        flex-shrink: 0;
        pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-8k8-4__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding for collapsed state */
        background-color: #fcfcfc;
        color: #555;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-8k8-4__faq-answer p {
        padding: 0;
        margin: 0;
        padding-bottom: 20px; /* Add bottom padding to the content itself */
    }

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

    .page-8k8-4__cta-section {
        text-align: center;
        padding: 60px 20px;
        background-color: #1a2a6c;
        color: #fff;
        border-radius: 10px;
        margin-bottom: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-4__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .page-8k8-4__cta-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-4__hero-title {
        font-size: 3em;
      }
      .page-8k8-4__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-4__section-title {
        font-size: 2em;
      }
      .page-8k8-4__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-4__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-4__container {
        padding: 15px;
      }
      .page-8k8-4__hero-section {
        padding: 60px 15px 40px;
      }
      .page-8k8-4__hero-title {
        font-size: 2.5em;
        word-wrap: break-word !important;
      }
      .page-8k8-4__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-4__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-4__section {
        padding: 30px 0;
      }
      .page-8k8-4__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        word-wrap: break-word !important;
      }
      .page-8k8-4__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-4__card {
        padding: 25px;
      }
      .page-8k8-4__card-title {
        font-size: 1.3em;
        word-wrap: break-word !important;
      }
      .page-8k8-4__card-description {
        font-size: 0.95em;
      }
      .page-8k8-4__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-4__step-number {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 2em;
        width: auto;
      }
      .page-8k8-4__step-title {
        font-size: 1.5em;
        word-wrap: break-word !important;
      }
      .page-8k8-4__step-description {
        font-size: 1em;
        word-wrap: break-word !important;
      }
      .page-8k8-4__steps-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-4__faq-question {
          padding: 15px 20px;
          font-size: 1.1em;
      }
      .page-8k8-4__faq-question h3 {
          font-size: 1.1em;
          word-wrap: break-word !important;
      }
      .page-8k8-4__faq-toggle {
          font-size: 1.3em;
      }
      .page-8k8-4__faq-answer {
          padding: 0 20px;
      }
      .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
          padding: 15px 20px !important;
      }
      .page-8k8-4__faq-answer p {
          padding-bottom: 15px;
      }
      .page-8k8-4__cta-section {
          padding: 40px 15px;
      }
      .page-8k8-4__cta-title {
          font-size: 2em;
          word-wrap: break-word !important;
      }
      .page-8k8-4__cta-description {
          font-size: 1em;
      }

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

    @media (max-width: 480px) {
      .page-8k8-4__hero-title {
        font-size: 2em;
      }
      .page-8k8-4__section-title {
        font-size: 1.6em;
      }
      .page-8k8-4__step-title {
        font-size: 1.3em;
      }
      .page-8k8-4__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-4__faq-question {
          font-size: 1em;
      }
      .page-8k8-4__faq-question h3 {
          font-size: 1em;
      }
    }
  