
    :root {
      --page-gom-primary-color: #e44d26; /* A strong, appealing color */
      --page-gom-secondary-color: #f7b32b; /* A complementary color */
      --page-gom-background-dark: #1a1a1a;
      --page-gom-background-light: #ffffff;
      --page-gom-text-light: #ffffff;
      --page-gom-text-dark: #333333;
      --page-gom-border-radius: 8px;
      --page-gom-spacing-medium: 20px;
      --page-gom-spacing-large: 40px;
    }

    .page-gom {
      font-family: 'Arial', sans-serif;
      color: var(--page-gom-text-dark);
      line-height: 1.6;
      background-color: var(--page-gom-background-light);
    }

    .page-gom .highlight {
      color: var(--page-gom-secondary-color);
      font-weight: bold;
    }
    .page-gom__section--dark .highlight {
      color: var(--page-gom-primary-color);
    }

    /* Fixed navigation bar spacing requirement */
    .page-gom__hero-section {
      padding-top: 10px; /* Small top padding as body handles header offset */
      padding-bottom: var(--page-gom-spacing-large);
      background: linear-gradient(135deg, var(--page-gom-primary-color), #ff6f40);
      color: var(--page-gom-text-light);
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Ensure sufficient height for hero */
    }

    .page-gom__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-gom__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 var(--page-gom-spacing-medium);
    }

    .page-gom__hero-title {
      font-size: 2.5em;
      margin-bottom: var(--page-gom-spacing-medium);
      font-weight: bold;
      color: var(--page-gom-text-light);
    }

    .page-gom__hero-description {
      font-size: 1.1em;
      margin-bottom: var(--page-gom-spacing-large);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gom__cta-button {
      display: inline-block;
      background-color: var(--page-gom-secondary-color);
      color: var(--page-gom-text-dark);
      padding: 15px 30px;
      border-radius: var(--page-gom-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-gom__cta-button:hover {
      background-color: #ff9900;
      transform: translateY(-3px);
    }

    .page-gom__floating-buttons {
      position: fixed;
      bottom: var(--page-gom-spacing-medium);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      justify-content: center;
      padding: 0 var(--page-gom-spacing-medium);
      box-sizing: border-box;
    }

    .page-gom__floating-button {
      background-color: var(--page-gom-primary-color);
      color: var(--page-gom-text-light);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      border: 2px solid var(--page-gom-secondary-color);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      flex: 1;
      max-width: 150px;
      text-align: center;
    }

    .page-gom__floating-button:hover {
      background-color: #cc3d1a;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-gom__section {
      padding: var(--page-gom-spacing-large) var(--page-gom-spacing-medium);
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-gom__section--dark {
      background-color: var(--page-gom-background-dark);
      color: var(--page-gom-text-light);
    }

    .page-gom__section-title {
      font-size: 2em;
      margin-bottom: var(--page-gom-spacing-large);
      color: var(--page-gom-primary-color);
    }

    .page-gom__section--dark .page-gom__section-title {
      color: var(--page-gom-secondary-color);
    }

    .page-gom__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-gom-spacing-medium);
      margin-top: var(--page-gom-spacing-large);
    }

    .page-gom__product-card {
      background-color: var(--page-gom-background-light);
      border-radius: var(--page-gom-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-gom-text-dark);
      padding-bottom: var(--page-gom-spacing-medium);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-gom__section--dark .page-gom__product-card {
      background-color: #2a2a2a;
      color: var(--page-gom-text-light);
    }

    .page-gom__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-gom__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--page-gom-primary-color);
    }

    .page-gom__product-title {
      font-size: 1.3em;
      margin: var(--page-gom-spacing-medium) 0 10px;
      color: var(--page-gom-primary-color);
    }

    .page-gom__section--dark .page-gom__product-title {
      color: var(--page-gom-secondary-color);
    }

    .page-gom__product-description {
      font-size: 0.95em;
      padding: 0 var(--page-gom-spacing-medium);
    }

    .page-gom__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--page-gom-spacing-medium);
      text-align: left;
      margin-top: var(--page-gom-spacing-large);
      list-style: none;
      padding: 0;
    }

    .page-gom__feature-item {
      background-color: #f0f0f0;
      padding: var(--page-gom-spacing-medium);
      border-radius: var(--page-gom-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-gom__section--dark .page-gom__feature-item {
      background-color: #2a2a2a;
      color: var(--page-gom-text-light);
    }

    .page-gom__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-gom__feature-title {
      font-size: 1.2em;
      color: var(--page-gom-primary-color);
      margin-bottom: 10px;
    }

    .page-gom__section--dark .page-gom__feature-title {
      color: var(--page-gom-secondary-color);
    }

    .page-gom__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--page-gom-spacing-medium);
      margin-top: var(--page-gom-spacing-large);
    }

    .page-gom__promotion-card {
      background-color: #f0f0f0;
      border-radius: var(--page-gom-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: var(--page-gom-spacing-medium);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-gom__section--dark .page-gom__promotion-card {
      background-color: #2a2a2a;
      color: var(--page-gom-text-light);
    }

    .page-gom__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-gom__promotion-title {
      font-size: 1.4em;
      color: var(--page-gom-primary-color);
      margin-bottom: 10px;
    }

    .page-gom__section--dark .page-gom__promotion-title {
      color: var(--page-gom-secondary-color);
    }

    .page-gom__promotion-description {
      font-size: 1em;
      margin-bottom: 15px;
    }

    .page-gom__promotion-link {
      color: var(--page-gom-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-gom__section--dark .page-gom__promotion-link {
      color: var(--page-gom-secondary-color);
    }

    .page-gom__promotion-link:hover {
      text-decoration: underline;
    }

    /* FAQ Section */
    .page-gom__faq-section {
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
      padding: var(--page-gom-spacing-large) var(--page-gom-spacing-medium);
    }

    .page-gom__faq-title {
      font-size: 2em;
      margin-bottom: var(--page-gom-spacing-large);
      text-align: center;
      color: var(--page-gom-primary-color);
    }

    .page-gom__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: var(--page-gom-border-radius);
      margin-bottom: 10px;
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-gom__section--dark .page-gom__faq-item {
      background-color: #2a2a2a;
      border-color: #444;
      color: var(--page-gom-text-light);
    }

    .page-gom__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px var(--page-gom-spacing-medium);
      cursor: pointer;
      user-select: none;
      background-color: #eee;
      color: var(--page-gom-text-dark);
      transition: background-color 0.3s ease;
    }

    .page-gom__section--dark .page-gom__faq-question {
      background-color: #3a3a3a;
      color: var(--page-gom-text-light);
    }

    .page-gom__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-gom__section--dark .page-gom__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-gom__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-gom__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 10px;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

    .page-gom__faq-item.active .page-gom__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-gom__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--page-gom-spacing-medium);
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-gom__faq-item.active .page-gom__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px var(--page-gom-spacing-medium) !important;
      opacity: 1;
    }

    /* General image styling */
    .page-gom img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-gom__hero-title {
        font-size: 2em;
      }

      .page-gom__hero-description {
        font-size: 1em;
      }

      .page-gom__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-gom__section-title {
        font-size: 1.8em;
      }

      .page-gom__product-grid,
      .page-gom__features-list,
      .page-gom__promotions-grid {
        grid-template-columns: 1fr;
        gap: var(--page-gom-spacing-medium);
      }

      /* List item mobile responsive requirement */
      .page-gom__product-grid > *,
      .page-gom__features-list > *,
      .page-gom__promotions-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: var(--page-gom-spacing-medium) !important;
        padding-right: var(--page-gom-spacing-medium) !important;
      }
      .page-gom__product-grid,
      .page-gom__features-list,
      .page-gom__promotions-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-gom__product-description,
      .page-gom__promotion-description,
      .page-gom__feature-item p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-gom__floating-buttons {
        flex-direction: row; /* Keep row for small screens */
        gap: 10px;
        bottom: 10px;
        padding: 0 10px;
      }

      .page-gom__floating-button {
        max-width: 130px; /* Adjust max-width for smaller screens */
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-gom__faq-question {
        padding: 15px;
      }

      .page-gom__faq-answer {
        padding: 0 15px;
      }
      .page-gom__faq-item.active .page-gom__faq-answer {
        padding: 20px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-gom__hero-title {
        font-size: 1.8em;
      }
      .page-gom__floating-buttons {
        gap: 8px;
        bottom: 8px;
      }
      .page-gom__floating-button {
        max-width: 120px;
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }

    /* Ensure images within any container are responsive */
    .page-gom__product-image-container,
    .page-gom__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-gom__product-image,
    .page-gom__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 768px) {
      .page-gom__product-image-container,
      .page-gom__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-gom__product-image,
      .page-gom__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

  