
    .page-2bong {
      font-family: 'Arial', sans-serif;
      color: #212529; /* Dark text for good contrast */
      line-height: 1.6;
      background-color: #f8f9fa; /* Light background for the page */
    }

    /* Floating Buttons */
    .page-2bong__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-2bong__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-2bong__button--primary {
      background-color: #007bff; /* Primary blue */
      color: #ffffff;
    }

    .page-2bong__button--primary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-2bong__button--secondary {
      background-color: #28a745; /* Green for secondary action */
      color: #ffffff;
    }

    .page-2bong__button--secondary:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-2bong__button--register {
      background-color: #ffc107; /* Yellow for register */
      color: #212529;
    }

    .page-2bong__button--register:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-2bong__button--login {
      background-color: #17a2b8; /* Cyan for login */
      color: #ffffff;
    }

    .page-2bong__button--login:hover {
      background-color: #138496;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-2bong section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-2bong__section-title {
      font-size: 2.2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-2bong__section-subtitle {
      font-size: 1.1em;
      text-align: center;
      color: #555;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-2bong__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-2bong__hero-content {
      max-width: 800px;
    }

    .page-2bong__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: 900;
      line-height: 1.2;
    }

    .page-2bong__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-2bong__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .page-2bong__hero-image-wrapper {
      margin-top: 40px;
      width: 100%;
      max-width: 600px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-2bong__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features Section */
    .page-2bong__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-2bong__feature-item {
      text-align: center;
      padding: 25px;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-2bong__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .page-2bong__feature-icon {
      width: 200px;
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-2bong__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-2bong__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Promo Section */
    .page-2bong__promo-section {
      background-color: #e9f7ff;
    }

    .page-2bong__promo-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    .page-2bong__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-2bong__promo-text {
      text-align: left;
    }

    .page-2bong__promo-text p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #333;
    }

    .page-2bong__promo-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-2bong__promo-list-item {
      padding: 10px 0;
      border-bottom: 1px dashed #e0e0e0;
      font-size: 1.05em;
      color: #444;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-2bong__promo-list-item:last-child {
      border-bottom: none;
    }

    .page-2bong__promo-cta {
      text-align: center;
      margin-top: 20px;
    }

    /* Why Choose Section */
    .page-2bong__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-2bong__why-choose-item {
      text-align: center;
      padding: 25px;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-2bong__why-choose-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .page-2bong__why-choose-icon {
      width: 200px;
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-2bong__why-choose-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-2bong__why-choose-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-2bong__faq-section {
      background-color: #f0f8ff;
    }

    .page-2bong__faq-container {
      max-width: 800px;
      margin: 30px auto 0 auto;
    }

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

    .page-2bong__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e0f2ff;
      color: #007bff;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-2bong__faq-question:hover {
      background-color: #cce7ff;
    }

    .page-2bong__faq-question-title {
      font-size: 1.15em;
      margin: 0;
      pointer-events: none;
      color: #007bff;
    }

    .page-2bong__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-2bong__faq-item.active .page-2bong__faq-toggle {
      transform: rotate(45deg);
    }

    .page-2bong__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fdfdfd;
      color: #333;
    }

    .page-2bong__faq-item.active .page-2bong__faq-answer {
      max-height: 2000px !important;
      padding: 20px 20px !important;
      opacity: 1;
    }

    .page-2bong__faq-answer p {
      margin: 0;
    }

    /* Call to Action Bottom Section */
    .page-2bong__cta-bottom-section {
      text-align: center;
      background: linear-gradient(45deg, #007bff, #28a745);
      color: #ffffff;
      padding: 50px 20px;
      margin-bottom: 0;
    }

    .page-2bong__cta-bottom-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: 800;
    }

    .page-2bong__cta-bottom-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-2bong__hero-title {
        font-size: 2.5em;
      }
      .page-2bong__hero-description {
        font-size: 1.1em;
      }
      .page-2bong__section-title {
        font-size: 1.8em;
      }
      .page-2bong__cta-bottom-title {
        font-size: 2em;
      }
      .page-2bong__features-grid,
      .page-2bong__why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-2bong section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-2bong__hero-section {
        padding: 40px 15px;
        flex-direction: column;
      }

      .page-2bong__hero-title {
        font-size: 2em;
      }
      .page-2bong__hero-description {
        font-size: 1em;
      }

      .page-2bong__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: space-around;
        gap: 10px;
      }
      .page-2bong__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-2bong__section-title {
        font-size: 1.6em;
      }
      .page-2bong__section-subtitle {
        font-size: 0.95em;
      }

      .page-2bong__promo-content {
        flex-direction: column;
      }

      .page-2bong__promo-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
      }
      .page-2bong__promo-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-2bong__feature-item,
      .page-2bong__why-choose-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px;
      }
      .page-2bong__feature-icon,
      .page-2bong__why-choose-icon {
        width: 150px;
        height: auto;
      }

      .page-2bong__faq-question {
        padding: 12px 15px;
      }
      .page-2bong__faq-question-title {
        font-size: 1em;
      }
      .page-2bong__faq-answer {
        padding: 0 15px;
      }
      .page-2bong__faq-item.active .page-2bong__faq-answer {
        padding: 15px 15px !important;
      }

      .page-2bong__cta-bottom-title {
        font-size: 1.8em;
      }
      .page-2bong__cta-bottom-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-2bong__hero-title {
        font-size: 1.8em;
      }
      .page-2bong__hero-description {
        font-size: 0.95em;
      }
      .page-2bong__button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
      .page-2bong__section-title {
        font-size: 1.4em;
      }
    }
  