
    /* Base styles for the page content, ensuring it doesn't clash with global styles */
    .page-8k8-com-login-11 {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      padding-bottom: 40px; /* General padding to prevent content from touching footer */
      padding-top: 10px; /* Small top padding for hero/first section, relying on body padding for header offset */
    }

    .page-8k8-com-login-11__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-11__section--dark {
      background-color: #f8f8f8;
    }

    .page-8k8-com-login-11__heading {
      color: #0056b3; /* A strong blue for headings */
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-8k8-com-login-11__subheading {
      color: #0056b3;
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-8k8-com-login-11__paragraph {
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-com-login-11__button {
      display: inline-block;
      background-color: #007bff; /* Primary button color */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin-top: 20px;
    }

    .page-8k8-com-login-11__button:hover {
      background-color: #0056b3;
    }

    /* Hero Section */
    .page-8k8-com-login-11__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      background-color: #1a2a49; /* Dark background for hero */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-com-login-11__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.4; /* Slightly transparent background image */
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #fff;
    }

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

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

    .page-8k8-com-login-11__benefit-card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-11__benefit-card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-com-login-11__benefit-icon {
      width: 100px; /* These are placeholders, actual image dimensions will be >= 200x200 */
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

    .page-8k8-com-login-11__benefit-description {
      color: #666;
    }

    /* Login Steps Section */
    .page-8k8-com-login-11__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-com-login-11__step-item {
      background-color: #ffffff;
      padding: 25px 30px;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-11__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      flex-shrink: 0;
      margin-top: -5px; /* Adjust alignment */
    }

    .page-8k8-com-login-11__step-content h3 {
      font-size: 1.5em;
      color: #0056b3;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-11__step-content p {
      color: #555;
    }

    /* Security Section */
    .page-8k8-com-login-11__security-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-11__security-text {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-com-login-11__security-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-8k8-com-login-11__promo-card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-11__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-com-login-11__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-11__promo-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-11__promo-description {
      color: #666;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-8k8-com-login-11__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-11__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f0f8ff; /* Light blue background for questions */
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #0056b3;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-login-11__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - visual */
    }

    .page-8k8-com-login-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question, but top/bottom is 0 */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      background-color: #ffffff;
    }

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

    .page-8k8-com-login-11__faq-answer p {
      margin-bottom: 0; /* Remove default paragraph margin */
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login-11__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-com-login-11__heading {
        font-size: 2em;
      }
      .page-8k8-com-login-11__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-11__section {
        padding: 30px 15px;
      }

      .page-8k8-com-login-11__hero-section {
        padding: 60px 15px;
      }

      .page-8k8-com-login-11__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-login-11__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__heading {
        font-size: 1.8em;
      }

      .page-8k8-com-login-11__subheading {
        font-size: 1.4em;
      }

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

      /* List item responsiveness */
      .page-8k8-com-login-11__benefits-grid,
      .page-8k8-com-login-11__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-11__benefit-card,
      .page-8k8-com-login-11__promo-card,
      .page-8k8-com-login-11__step-item,
      .page-8k8-com-login-11__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-11__steps-list,
      .page-8k8-com-login-11__faq-container {
        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-com-login-11__step-content h3 {
        font-size: 1.3em;
      }

      .page-8k8-com-login-11__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login-11__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login-11__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-login-11__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-com-login-11__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-8k8-com-login-11__step-number {
        margin-bottom: 10px;
        margin-top: 0;
      }
      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1em;
      }
    }
  