
    /* Base styles for the page-777pub-org */
    .page-777pub-org {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Section styling */
    .page-777pub-org__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-777pub-org__section:first-of-type {
      padding-top: 50px; /* Small top padding, assuming body padding is handled by shared CSS */
    }

    .page-777pub-org__section-title {
      font-size: 2.5em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-777pub-org__section-subtitle {
      font-size: 1.8em;
      color: #555;
      text-align: center;
      margin-bottom: 25px;
    }

    /* Hero Section */
    .page-777pub-org__hero-section {
      background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      margin-bottom: 0;
      border-radius: 0;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body padding is handled by shared CSS */
    }

    .page-777pub-org__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:hero:1920x1080:casino_lobby,gaming_bg,abstract]');
      background-size: cover;
      background-position: center;
      opacity: 0.2;
      z-index: 0;
    }

    .page-777pub-org__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-777pub-org__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-777pub-org__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .page-777pub-org__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-777pub-org__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* General text styling */
    .page-777pub-org__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #444;
    }

    /* Grid for features/products */
    .page-777pub-org__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-777pub-org__grid-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-777pub-org__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-777pub-org__grid-item-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 200px; /* Ensure minimum size */
      display: block;
    }

    .page-777pub-org__grid-item-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-777pub-org__grid-item-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1;
    }

    /* Providers and Payment list */
    .page-777pub-org__list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-777pub-org__list-item {
      background-color: #e9f5ff;
      color: #0056b3;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive list items */
      width: auto; /* Allow natural width */
      max-width: 100%; /* Ensure it doesn't overflow */
      text-align: center;
    }

    /* FAQ Section */
    .page-777pub-org__faq-section {
      background-color: #f0f8ff;
    }

    .page-777pub-org__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-777pub-org__faq-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-777pub-org__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: #333;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-777pub-org__faq-question:hover {
      background-color: #eee;
    }

    .page-777pub-org__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-777pub-org__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: #007bff;
    }

    .page-777pub-org__faq-item.active .page-777pub-org__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for active state */
    }

    .page-777pub-org__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      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;
      font-size: 1.05em;
    }

    .page-777pub-org__faq-item.active .page-777pub-org__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-777pub-org__hero-title {
        font-size: 2.8em;
      }
      .page-777pub-org__hero-description {
        font-size: 1.1em;
      }
      .page-777pub-org__section-title {
        font-size: 2em;
      }
      .page-777pub-org__section-subtitle {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-777pub-org__hero-section {
        padding: 60px 15px;
      }
      .page-777pub-org__hero-title {
        font-size: 2.2em;
      }
      .page-777pub-org__hero-description {
        font-size: 1em;
      }
      .page-777pub-org__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-777pub-org__section {
        padding: 30px 15px;
      }
      .page-777pub-org__section-title {
        font-size: 1.8em;
      }
      .page-777pub-org__section-subtitle {
        font-size: 1.3em;
      }
      .page-777pub-org__grid {
        grid-template-columns: 1fr;
      }
      .page-777pub-org__grid-item {
        padding: 20px;
      }
      .page-777pub-org__grid-item-title {
        font-size: 1.3em;
      }
      .page-777pub-org__paragraph {
        font-size: 1em;
        text-align: left;
      }

      /* Responsive list items */
      .page-777pub-org__list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-777pub-org__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !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-777pub-org__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-777pub-org__faq-question h3 {
        font-size: 1.1em;
      }
      .page-777pub-org__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }
      .page-777pub-org__faq-item.active .page-777pub-org__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-777pub-org__hero-title {
        font-size: 1.8em;
      }
      .page-777pub-org__hero-description {
        font-size: 0.9em;
      }
      .page-777pub-org__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-777pub-org__section-title {
        font-size: 1.5em;
      }
      .page-777pub-org__faq-toggle {
        font-size: 1.5em;
      }
    }
  