
    :root {
      --primary-color: #007bff; /* Example primary color */
      --secondary-color: #6c757d; /* Example secondary color */
      --accent-color: #28a745; /* Example accent color */
      --background-dark: #1a1a2e;
      --background-medium: #1f4068;
      --background-light: #4c4c6d;
      --text-color-light: #e0e0e0;
      --text-color-dark: #333;
      --border-color: #3e3e5c;
      --button-bg-primary: #e44d26; /* Orange for action */
      --button-text-primary: #ffffff;
      --button-bg-secondary: #007bff; /* Blue for secondary action */
      --button-text-secondary: #ffffff;
    }

    /* Base styles for the specific page */
    .page-6623a-galaxy {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-6623a-galaxy__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-6623a-galaxy__section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

    .page-6623a-galaxy__section--dark {
      background-color: var(--background-dark);
    }

    .page-6623a-galaxy__section--medium {
      background-color: var(--background-medium);
    }

    .page-6623a-galaxy__section--light {
      background-color: var(--background-light);
    }

    .page-6623a-galaxy__heading {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-6623a-galaxy__subheading {
      font-size: 1.8em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-6623a-galaxy__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color-light);
    }

    /* Hero Section */
    .page-6623a-galaxy__hero-section {
      padding: 10px 0 60px 0; /* Adjusted for header offset */
      background: linear-gradient(135deg, var(--background-dark), var(--background-medium));
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
    }

    .page-6623a-galaxy__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      margin: 0 auto; /* Centered product display */
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
      margin-bottom: 30px;
      transition: transform 0.3s ease-in-out;
    }

    .page-6623a-galaxy__hero-image:hover {
      transform: scale(1.02);
    }

    .page-6623a-galaxy__hero-title {
      font-size: 3em;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-align: center; /* Brand keyword centered */
    }

    .page-6623a-galaxy__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-6623a-galaxy__cta-button {
      display: inline-block;
      background-color: var(--button-bg-primary);
      color: var(--button-text-primary);
      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-6623a-galaxy__cta-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

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

    .page-6623a-galaxy__floating-button {
      background-color: var(--button-bg-secondary);
      color: var(--button-text-secondary);
      border: none;
      border-radius: 50px;
      padding: 12px 25px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-6623a-galaxy__floating-button--register {
      background-color: var(--accent-color);
    }

    .page-6623a-galaxy__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-6623a-galaxy__floating-button--login {
      background-color: var(--primary-color);
    }

    .page-6623a-galaxy__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Product Grid */
    .page-6623a-galaxy__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      text-align: left;
    }

    .page-6623a-galaxy__product-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-6623a-galaxy__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .page-6623a-galaxy__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-6623a-galaxy__product-image {
      width: 100%;
      max-width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-6623a-galaxy__product-card:hover .page-6623a-galaxy__product-image {
      transform: scale(1.05);
    }

    .page-6623a-galaxy__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-6623a-galaxy__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-6623a-galaxy__product-description {
      font-size: 0.95em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-6623a-galaxy__product-button {
      background-color: var(--button-bg-secondary);
      color: var(--button-text-secondary);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      text-align: center;
    }

    .page-6623a-galaxy__product-button:hover {
      background-color: #0056b3;
    }

    /* Promotions Section */
    .page-6623a-galaxy__promotion-card {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-6623a-galaxy__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-6623a-galaxy__promotion-title {
      font-size: 1.6em;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-6623a-galaxy__promotion-description {
      font-size: 1em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-6623a-galaxy__promotion-date {
      font-size: 0.9em;
      color: var(--secondary-color);
    }

    /* About Section */
    .page-6623a-galaxy__about-content {
      text-align: left;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-6623a-galaxy__about-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    /* Providers and Payments Grid */
    .page-6623a-galaxy__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-6623a-galaxy__grid-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      font-weight: bold;
      color: var(--primary-color);
      text-align: center;
      transition: transform 0.2s ease;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-6623a-galaxy__grid-item:hover {
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-6623a-galaxy__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

    .page-6623a-galaxy__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-6623a-galaxy__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--background-medium);
      cursor: pointer;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--primary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-6623a-galaxy__faq-question:hover {
      background-color: #2a5a8f;
    }

    .page-6623a-galaxy__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-6623a-galaxy__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      line-height: 1; /* Ensure consistent height */
    }

    .page-6623a-galaxy__faq-item.active .page-6623a-galaxy__faq-toggle {
      transform: rotate(45deg); /* Change + to X or a dash visually */
    }

    .page-6623a-galaxy__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: var(--text-color-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--background-light);
      font-size: 1em;
    }

    .page-6623a-galaxy__faq-item.active .page-6623a-galaxy__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-6623a-galaxy__hero-title {
        font-size: 2.2em;
      }

      .page-6623a-galaxy__hero-description {
        font-size: 1em;
      }

      .page-6623a-galaxy__heading {
        font-size: 2em;
      }

      .page-6623a-galaxy__subheading {
        font-size: 1.5em;
      }

      .page-6623a-galaxy__paragraph {
        font-size: 0.95em;
      }

      .page-6623a-galaxy__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-6623a-galaxy__product-grid {
        grid-template-columns: 1fr;
      }

      .page-6623a-galaxy__product-image-wrapper {
        height: 180px;
      }

      .page-6623a-galaxy__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      /* List item responsive requirements */
      .page-6623a-galaxy__product-grid > * { /* Targets product cards */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px; /* Adjust padding to prevent content overflow */
        padding-right: 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-6623a-galaxy__grid > * { /* Targets provider/payment items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important; /* Adjusted padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-6623a-galaxy__product-image,
      .page-6623a-galaxy__hero-image,
      .page-6623a-galaxy__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-6623a-galaxy__product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-6623a-galaxy__floating-buttons {
        right: 10px;
        bottom: 10px;
      }

      .page-6623a-galaxy__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-6623a-galaxy__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-6623a-galaxy__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
    }
  