
    /* General styles for the page */
    .page-yy777-com-login-philippines {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    /* Hero Section */
    .page-yy777-com-login-philippines__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      background-color: #0d47a1; /* Dark blue fallback for deeper contrast */
      padding-top: 10px; /* Small decorative top padding, main offset handled by body */
      box-sizing: border-box;
      overflow: hidden; /* Ensure content stays within bounds */
    }

    .page-yy777-com-login-philippines__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for text readability */
      z-index: 1;
    }

    .page-yy777-com-login-philippines__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0; /* Image behind the overlay */
    }

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

    .page-yy777-com-login-philippines__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffe0b2; /* Light orange for strong contrast */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-yy777-com-login-philippines__hero-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #e3f2fd; /* Lighter blue for good contrast */
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-yy777-com-login-philippines__cta-button {
      display: inline-block;
      background-color: #ff9800; /* Orange for call to action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-com-login-philippines__cta-button:hover {
      background-color: #f57c00;
    }

    /* Section Styling */
    .page-yy777-com-login-philippines__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-com-login-philippines__section:nth-of-type(even) {
      background-color: #e0f2f7; /* Light blue background for alternate sections */
    }

    .page-yy777-com-login-philippines__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #1a237e; /* Darker blue for titles */
    }

    .page-yy777-com-login-philippines__section-subtitle {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #424242;
    }

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

    .page-yy777-com-login-philippines__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-yy777-com-login-philippines__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-yy777-com-login-philippines__feature-icon {
      width: 200px; /* Minimum size requirement */
      height: 200px; /* Minimum size requirement */
      object-fit: contain;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-yy777-com-login-philippines__feature-title {
      font-size: 1.5em;
      color: #1a237e;
      margin-bottom: 15px;
    }

    .page-yy777-com-login-philippines__feature-description {
      color: #555;
      font-size: 0.95em;
    }

    /* Image Styling */
    .page-yy777-com-login-philippines__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-yy777-com-login-philippines__content-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Floating buttons */
    .page-yy777-com-login-philippines__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-yy777-com-login-philippines__floating-button {
      background-color: #ff9800;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 120px;
      text-align: center;
    }

    .page-yy777-com-login-philippines__floating-button--register {
      background-color: #4caf50; /* Green for register */
    }

    .page-yy777-com-login-philippines__floating-button--register:hover {
      background-color: #388e3c;
      transform: translateY(-3px);
    }

    .page-yy777-com-login-philippines__floating-button--login {
      background-color: #2196f3; /* Blue for login */
    }

    .page-yy777-com-login-philippines__floating-button--login:hover {
      background-color: #1976d2;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-yy777-com-login-philippines__faq-section {
      background-color: #f0f4f8;
    }

    .page-yy777-com-login-philippines__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-yy777-com-login-philippines__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f8f8f8;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-login-philippines__faq-question:hover {
      background-color: #f1f1f1;
    }

    .page-yy777-com-login-philippines__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a237e;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-com-login-philippines__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #2196f3;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-yy777-com-login-philippines__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      text-align: left;
    }

    .page-yy777-com-login-philippines__faq-item.active .page-yy777-com-login-philippines__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-yy777-com-login-philippines__container {
        padding: 15px;
      }

      .page-yy777-com-login-philippines__hero-section {
        padding: 80px 15px;
      }

      .page-yy777-com-login-philippines__hero-title {
        font-size: 2.2em;
      }

      .page-yy777-com-login-philippines__hero-description {
        font-size: 1em;
      }

      .page-yy777-com-login-philippines__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-yy777-com-login-philippines__section {
        padding: 40px 0;
      }

      .page-yy777-com-login-philippines__section-title {
        font-size: 2em;
      }

      .page-yy777-com-login-philippines__section-subtitle {
        font-size: 1.1em;
      }

      .page-yy777-com-login-philippines__features-grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-com-login-philippines__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }

      .page-yy777-com-login-philippines__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yy777-com-login-philippines__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          width: auto !important; /* Allow it to scale down further */
      }

      .page-yy777-com-login-philippines__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      .page-yy777-com-login-philippines__content-image {
          max-width: 100% !important;
          height: auto !important;
      }

      .page-yy777-com-login-philippines__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 10px;
      }

      .page-yy777-com-login-philippines__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }

      .page-yy777-com-login-philippines__faq-question {
        padding: 15px 20px;
      }

      .page-yy777-com-login-philippines__faq-question h3 {
        font-size: 1.1em;
      }

      .page-yy777-com-login-philippines__faq-answer {
        padding: 15px 20px;
      }

      .page-yy777-com-login-philippines__faq-item.active .page-yy777-com-login-philippines__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-login-philippines__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-com-login-philippines__section-title {
        font-size: 1.8em;
      }
    }

  