.page-fb777-account {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small padding as per fixed nav bar requirement, assuming body has header offset */
    }

    .page-fb777-account__section-title {
      font-size: 2.5em;
      color: #004d40; /* Dark teal */
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-fb777-account__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
    }

    .page-fb777-account__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .page-fb777-account__button--primary {
      background-color: #ffcc00; /* Yellow */
      color: #333;
      border: none;
    }

    .page-fb777-account__button--primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-fb777-account__button--secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
      margin-left: 20px;
    }

    .page-fb777-account__button--secondary:hover {
      background-color: #ffcc00;
      color: #333;
      transform: translateY(-2px);
    }

    .page-fb777-account__button--large {
      padding: 18px 35px;
      font-size: 1.2em;
      background-color: #ffcc00;
      color: #333;
      border: none;
    }

    .page-fb777-account__button--large:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-fb777-account__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, #00796b 0%, #004d40 100%); /* Dark teal gradient */
      color: #fff;
      padding: 60px 20px;
      overflow: hidden;
      position: relative;
    }

    .page-fb777-account__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-fb777-account__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-fb777-account__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fb777-account__hero-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px; /* Add gap for spacing between buttons */
    }

    .page-fb777-account__hero-image-container {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1200px;
      opacity: 0.2;
      z-index: 0;
    }

    .page-fb777-account__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Benefits Section */
    .page-fb777-account__benefits-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-fb777-account__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-fb777-account__benefit-item {
      text-align: center;
      padding: 30px;
      background-color: #f0f0f0;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-fb777-account__benefit-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-fb777-account__benefit-icon {
      width: 250px; /* Min size 200px */
      height: auto;
      max-width: 100%;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fb777-account__benefit-title {
      font-size: 1.5em;
      color: #00796b;
      margin-bottom: 10px;
    }

    .page-fb777-account__benefit-text {
      font-size: 1em;
      color: #555;
    }

    /* How-To Section */
    .page-fb777-account__how-to-section {
      padding: 60px 20px;
      background-color: #e0f2f1; /* Light teal */
    }

    .page-fb777-account__steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto 40px auto;
    }

    .page-fb777-account__step-item {
      flex: 1 1 200px; /* Allow items to grow and shrink */
      max-width: 280px;
      text-align: center;
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .page-fb777-account__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-fb777-account__step-title {
      font-size: 1.4em;
      color: #00796b;
      margin-bottom: 10px;
    }

    .page-fb777-account__step-text {
      font-size: 0.95em;
      color: #555;
    }

    .page-fb777-account__cta-bottom {
      text-align: center;
      margin-top: 40px;
    }

    /* Games Section */
    .page-fb777-account__games-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-fb777-account__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-fb777-account__provider-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background-color: #f0f0f0;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-fb777-account__provider-logo {
      width: 120px; /* gamelogo type, css controls size */
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-fb777-account__provider-name {
      font-weight: bold;
      color: #004d40;
      text-align: center;
    }

    /* FAQ Section */
    .page-fb777-account__faq-section {
      padding: 60px 20px;
      background-color: #f8f8f8;
    }

    .page-fb777-account__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-fb777-account__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-fb777-account__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #00796b; /* Dark teal */
      color: #fff;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-fb777-account__faq-question:hover {
      background-color: #004d40; /* Even darker teal */
    }

    .page-fb777-account__faq-question-title {
      margin: 0;
      font-size: 1.2em;
      color: #fff; /* Ensure high contrast */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-fb777-account__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-fb777-account__faq-item.active .page-fb777-account__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-fb777-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #f9f9f9;
      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-fb777-account__faq-item.active .page-fb777-account__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-fb777-account__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* CTA Section */
    .page-fb777-account__cta-section {
      padding: 80px 20px;
      background: linear-gradient(45deg, #004d40 0%, #00796b 100%);
      color: #fff;
      text-align: center;
    }

    .page-fb777-account__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
    }

    .page-fb777-account__cta-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-fb777-account__hero-title {
        font-size: 3em;
      }
      .page-fb777-account__hero-description,
      .page-fb777-account__cta-description {
        font-size: 1.2em;
      }
      .page-fb777-account__section-title,
      .page-fb777-account__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-fb777-account__hero-section {
        padding: 40px 15px;
      }
      .page-fb777-account__hero-title {
        font-size: 2.5em;
      }
      .page-fb777-account__hero-description {
        font-size: 1.1em;
      }
      .page-fb777-account__hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      .page-fb777-account__button--secondary {
        margin-left: 0;
        margin-top: 15px;
      }

      .page-fb777-account__section-title,
      .page-fb777-account__cta-title {
        font-size: 1.8em;
      }
      .page-fb777-account__section-description,
      .page-fb777-account__cta-description {
        font-size: 1em;
      }

      .page-fb777-account__benefits-section,
      .page-fb777-account__how-to-section,
      .page-fb777-account__games-section,
      .page-fb777-account__faq-section,
      .page-fb777-account__cta-section {
        padding: 40px 15px;
      }

      .page-fb777-account__benefits-grid,
      .page-fb777-account__steps-container,
      .page-fb777-account__game-providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-fb777-account__benefits-grid .page-fb777-account__benefit-item,
      .page-fb777-account__steps-container .page-fb777-account__step-item,
      .page-fb777-account__game-providers-grid .page-fb777-account__provider-item,
      .page-fb777-account__faq-list .page-fb777-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-fb777-account__benefit-text,
      .page-fb777-account__step-text,
      .page-fb777-account__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-fb777-account__faq-question {
        padding: 15px 20px;
      }
      .page-fb777-account__faq-question-title {
        font-size: 1.1em;
      }
      .page-fb777-account__faq-toggle {
        font-size: 1.5em;
      }
      .page-fb777-account__faq-answer {
        padding: 0 20px;
      }
      .page-fb777-account__faq-item.active .page-fb777-account__faq-answer {
        padding: 15px 20px !important;
      }

      .page-fb777-account__provider-logo {
        width: 100px;
        height: 70px;
      }
    }

    @media (max-width: 480px) {
      .page-fb777-account__hero-title {
        font-size: 2em;
      }
      .page-fb777-account__hero-description {
        font-size: 1em;
      }
      .page-fb777-account__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-fb777-account__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      .page-fb777-account__section-title,
      .page-fb777-account__cta-title {
        font-size: 1.6em;
      }
    }

    /* Ensure contrast for text colors */
    .page-fb777-account__hero-title,
    .page-fb777-account__hero-description,
    .page-fb777-account__cta-title,
    .page-fb777-account__cta-description,
    .page-fb777-account__faq-question,
    .page-fb777-account__faq-question-title {
      color: #fff; /* White text on dark background */
    }

    .page-fb777-account__button--primary,
    .page-fb777-account__button--large {
      color: #333; /* Dark text on yellow background */
    }

    .page-fb777-account__button--secondary {
      color: #ffcc00; /* Yellow text on transparent background */
    }
    .page-fb777-account__button--secondary:hover {
      color: #333; /* Dark text on yellow background */
    }

    .page-fb777-account__section-title,
    .page-fb777-account__benefit-title,
    .page-fb777-account__step-title,
    .page-fb777-account__provider-name {
      color: #004d40; /* Dark teal text on light background */
    }

    .page-fb777-account__section-description,
    .page-fb777-account__benefit-text,
    .page-fb777-account__step-text,
    .page-fb777-account__faq-answer p {
      color: #555; /* Dark gray text on light background */
    }