
    /* Base styles for the page */
    .page-8k8-com-register-philippines-login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

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

    /* Hero Section */
    .page-8k8-com-register-philippines-login__hero-section {
      position: relative;
      background-color: #004d40; /* Dark teal */
      color: #ffffff;
      padding: 10px 0 80px 0; /* Add 10px padding-top as per instruction, rest is content padding */
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px; /* Ensure sufficient height for hero */
    }

    .page-8k8-com-register-philippines-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background image */
      z-index: 1;
    }

    .page-8k8-com-register-philippines-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-8k8-com-register-philippines-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffeb3b; /* Bright yellow for contrast */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-8k8-com-register-philippines-login__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-com-register-philippines-login__cta-button {
      display: inline-block;
      background-color: #ffeb3b; /* Bright yellow */
      color: #004d40; /* Dark teal */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-register-philippines-login__cta-button:hover {
      background-color: #ffd700; /* Slightly darker yellow */
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-com-register-philippines-login__section {
      padding: 60px 0;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-com-register-philippines-login__section--dark {
      background-color: #e0f2f1; /* Light teal */
      color: #004d40;
    }

    .page-8k8-com-register-philippines-login__section-title {
      font-size: 2.5em;
      color: #004d40;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-com-register-philippines-login__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffeb3b;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* Content Area */
    .page-8k8-com-register-philippines-login__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }

    .page-8k8-com-register-philippines-login__text-content,
    .page-8k8-com-register-philippines-login__image-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-com-register-philippines-login__image-wrapper {
      text-align: center;
    }

    .page-8k8-com-register-philippines-login__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .page-8k8-com-register-philippines-login__image:hover {
      transform: scale(1.02);
    }

    .page-8k8-com-register-philippines-login__feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-register-philippines-login__feature-item {
      background-color: #f0fdf9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border-left: 5px solid #00796b;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-register-philippines-login__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .page-8k8-com-register-philippines-login__feature-item h3 {
      color: #004d40;
      margin-top: 0;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-8k8-com-register-philippines-login__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: step-counter;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-com-register-philippines-login__step-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      position: relative;
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-register-philippines-login__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #00796b;
      color: #ffffff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      border: 4px solid #ffeb3b;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-8k8-com-register-philippines-login__step-item h3 {
      margin-top: 25px;
      color: #004d40;
      font-size: 1.6em;
    }

    /* FAQ Section */
    .page-8k8-com-register-philippines-login__faq-section {
      background-color: #f0fdf9;
      padding: 60px 0;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-com-register-philippines-login__faq-item {
      margin-bottom: 15px;
      border: 1px solid #c8e6c9;
      border-radius: 8px;
      overflow: hidden;
      background-color: #ffffff;
    }

    .page-8k8-com-register-philippines-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #e0f2f1;
      color: #004d40;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-register-philippines-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #004d40;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-register-philippines-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #00796b;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-register-philippines-login__faq-item.active .page-8k8-com-register-philippines-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-8k8-com-register-philippines-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #333;
      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-com-register-philippines-login__faq-item.active .page-8k8-com-register-philippines-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Final CTA */
    .page-8k8-com-register-philippines-login__final-cta-section {
      text-align: center;
      padding: 60px 0 80px 0;
      background-color: #004d40;
      color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-com-register-philippines-login__final-cta-title {
      font-size: 2.5em;
      color: #ffeb3b;
      margin-bottom: 20px;
    }

    .page-8k8-com-register-philippines-login__final-cta-text {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-register-philippines-login__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-register-philippines-login__section-title {
        font-size: 2em;
      }
      .page-8k8-com-register-philippines-login__feature-list,
      .page-8k8-com-register-philippines-login__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-register-philippines-login__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-register-philippines-login__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-register-philippines-login__section {
        padding: 40px 0;
      }
      .page-8k8-com-register-philippines-login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-com-register-philippines-login__content-wrapper {
        flex-direction: column;
        gap: 30px;
      }
      .page-8k8-com-register-philippines-login__text-content,
      .page-8k8-com-register-philippines-login__image-wrapper {
        min-width: unset;
        width: 100%;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-register-philippines-login__feature-list,
      .page-8k8-com-register-philippines-login__steps-list {
        display: block; /* Stack items */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register-philippines-login__feature-item,
      .page-8k8-com-register-philippines-login__step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
        padding: 20px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-register-philippines-login__step-item::before {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
      }
      .page-8k8-com-register-philippines-login__step-item h3 {
        margin-top: 20px;
        font-size: 1.4em;
      }

      /* Image responsiveness */
      .page-8k8-com-register-philippines-login__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-register-philippines-login__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* FAQ mobile */
      .page-8k8-com-register-philippines-login__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-com-register-philippines-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-register-philippines-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-register-philippines-login__faq-item.active .page-8k8-com-register-philippines-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-register-philippines-login__final-cta-title {
        font-size: 2em;
      }
      .page-8k8-com-register-philippines-login__final-cta-text {
        font-size: 1em;
      }
      .page-8k8-com-register-philippines-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-register-philippines-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-register-philippines-login__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-register-philippines-login__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com-register-philippines-login__faq-question {
        font-size: 1em;
      }
      .page-8k8-com-register-philippines-login__faq-question h3 {
        font-size: 1em;
      }
    }
  