
    /* Base styles for the page */
    .page-yy777-com-ph-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-yy777-com-ph-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-yy777-com-ph-login-register__hero-section {
      position: relative;
      background-color: #004d40; /* Dark teal background */
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* 10px top padding for fixed header */
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-yy777-com-ph-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-yy777-com-ph-login-register__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy777-com-ph-login-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-com-ph-login-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-yy777-com-ph-login-register__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-yy777-com-ph-login-register__button {
      background-color: #ffd700; /* Gold button */
      color: #004d40; /* Dark teal text */
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline for button-like divs */
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-com-ph-login-register__button:hover {
      background-color: #ffc107; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-yy777-com-ph-login-register__button--secondary {
      background-color: #00796b; /* Slightly lighter teal */
      color: #fff;
    }

    .page-yy777-com-ph-login-register__button--secondary:hover {
      background-color: #00695c;
    }

    /* Content Sections */
    .page-yy777-com-ph-login-register__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-com-ph-login-register__section-title {
      font-size: 2em;
      color: #004d40;
      margin-bottom: 25px;
      text-align: center;
    }

    .page-yy777-com-ph-login-register__section-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Features Grid */
    .page-yy777-com-ph-login-register__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-com-ph-login-register__feature-card {
      background-color: #f0f8f7; /* Light teal background */
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .page-yy777-com-ph-login-register__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-yy777-com-ph-login-register__feature-icon {
      width: 100%;
      max-width: 250px; /* Minimum 200x200 requirement */
      height: auto;
      margin-bottom: 20px;
      border-radius: 4px;
    }

    .page-yy777-com-ph-login-register__feature-title {
      font-size: 1.4em;
      color: #004d40;
      margin-bottom: 15px;
    }

    .page-yy777-com-ph-login-register__feature-description {
      color: #666;
    }

    /* Steps List */
    .page-yy777-com-ph-login-register__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
    }

    .page-yy777-com-ph-login-register__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      box-sizing: border-box; /* Required for list items */
    }

    .page-yy777-com-ph-login-register__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #ffd700;
      color: #004d40;
      font-weight: bold;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      min-width: 40px; /* Ensure it stays round */
      min-height: 40px; /* Ensure it stays round */
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2em;
      margin-right: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-yy777-com-ph-login-register__step-content {
      flex-grow: 1;
    }

    .page-yy777-com-ph-login-register__step-title {
      font-size: 1.3em;
      color: #004d40;
      margin-bottom: 5px;
    }

    .page-yy777-com-ph-login-register__step-description {
      color: #666;
    }

    /* Floating Buttons for Mobile */
    .page-yy777-com-ph-login-register__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
      flex-wrap: wrap; /* Allow wrapping on very small screens */
    }

    .page-yy777-com-ph-login-register__floating-button {
      flex: 1;
      padding: 12px 15px;
      font-size: 1em;
      white-space: nowrap;
      min-width: 120px; /* Ensure buttons are not too small */
    }

    /* FAQ Section */
    .page-yy777-com-ph-login-register__faq-item {
      background-color: #f0f8f7;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-com-ph-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #00796b; /* Darker teal for question */
      color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-ph-login-register__faq-question:hover {
      background-color: #00695c;
    }

    .page-yy777-com-ph-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-yy777-com-ph-login-register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-yy777-com-ph-login-register__faq-item.active .page-yy777-com-ph-login-register__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-yy777-com-ph-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      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-yy777-com-ph-login-register__faq-item.active .page-yy777-com-ph-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-com-ph-login-register__hero-title {
        font-size: 2em;
      }

      .page-yy777-com-ph-login-register__hero-subtitle {
        font-size: 1em;
      }

      .page-yy777-com-ph-login-register__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-yy777-com-ph-login-register__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-yy777-com-ph-login-register__section {
        padding: 20px;
      }

      .page-yy777-com-ph-login-register__section-title {
        font-size: 1.6em;
      }

      .page-yy777-com-ph-login-register__section-text {
        font-size: 1em;
      }

      .page-yy777-com-ph-login-register__feature-card {
        padding: 20px;
      }

      .page-yy777-com-ph-login-register__feature-title {
        font-size: 1.2em;
      }

      /* List Item Responsive */
      .page-yy777-com-ph-login-register__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-yy777-com-ph-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-yy777-com-ph-login-register__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-yy777-com-ph-login-register__step-title {
        font-size: 1.1em;
      }
      .page-yy777-com-ph-login-register__step-description {
        font-size: 0.95em;
      }

      /* Image Responsive */
      .page-yy777-com-ph-login-register__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* FAQ Responsive */
      .page-yy777-com-ph-login-register__faq-question {
        padding: 12px 15px;
      }
      .page-yy777-com-ph-login-register__faq-question h3 {
        font-size: 1em;
      }
      .page-yy777-com-ph-login-register__faq-toggle {
        font-size: 1.2em;
      }
      .page-yy777-com-ph-login-register__faq-answer {
        padding: 0 15px;
      }
      .page-yy777-com-ph-login-register__faq-item.active .page-yy777-com-ph-login-register__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-ph-login-register__hero-buttons {
        flex-direction: column;
      }
      .page-yy777-com-ph-login-register__floating-buttons {
        width: 95%;
        gap: 10px;
      }
      .page-yy777-com-ph-login-register__floating-button {
        flex-basis: 100%; /* Stack buttons on very small screens */
        min-width: unset;
      }
    }
  