
    .page-69-vm {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fallback for header offset if not handled by shared.css body padding */
    .page-69-vm:first-child {
        padding-top: var(--header-offset, 122px);
    }

    .page-69-vm__header-brand {
      text-align: center;
      padding: 20px 0 10px;
      font-size: 2.5em;
      color: #ffcc00;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-69-vm__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.9);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-69-vm__button {
      background-color: #ffcc00;
      color: #1a1a2e;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      flex-grow: 1;
      margin: 0 10px;
      max-width: 180px;
    }

    .page-69-vm__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-69-vm__hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding, assuming body padding handles header offset */
    }

    .page-69-vm__hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-69-vm__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      width: 90%;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
    }

    .page-69-vm__hero-content h2 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
    }

    .page-69-vm__hero-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-69-vm__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-69-vm__section-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    .page-69-vm__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
    }

    .page-69-vm__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-content: center; /* Center items in the grid */
    }

    .page-69-vm__product-item {
      background-color: #2a2a4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-69-vm__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-69-vm__product-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-69-vm__product-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-69-vm__product-item h3 {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-69-vm__product-item p {
      font-size: 0.95em;
      color: #c0c0d0;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-69-vm__promotion-card {
      background-color: #2a2a4a;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-69-vm__promotion-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-69-vm__promotion-card h3 {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-69-vm__promotion-card p {
      color: #c0c0d0;
      font-size: 1em;
      margin-bottom: 15px;
    }

    .page-69-vm__about-us-section p {
      font-size: 1.1em;
      color: #c0c0d0;
      max-width: 800px;
      margin: 20px auto 0 auto;
    }

    .page-69-vm__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-69-vm__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .page-69-vm__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-69-vm__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-69-vm__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-69-vm__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-69-vm__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;
      color: #c0c0d0;
    }

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

    .page-69-vm__cta-section {
      padding: 50px 20px;
      background: linear-gradient(45deg, #1a1a2e, #3a3a5a);
      color: #fff;
      text-align: center;
      border-radius: 15px;
      margin: 40px auto;
      max-width: 900px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-69-vm__cta-section h2 {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    }

    .page-69-vm__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-69-vm__header-brand {
        font-size: 2em;
      }

      .page-69-vm__floating-buttons {
        padding: 8px 0;
      }

      .page-69-vm__button {
        padding: 10px 15px;
        font-size: 1em;
        max-width: 150px;
      }

      .page-69-vm__hero-content h2 {
        font-size: 1.8em;
      }

      .page-69-vm__hero-content p {
        font-size: 1em;
      }

      .page-69-vm__section {
        padding: 30px 15px;
      }

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

      .page-69-vm__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-69-vm__product-image-container {
        height: 180px;
      }

      .page-69-vm__product-item h3 {
        font-size: 1.2em;
      }

      .page-69-vm__promotion-card {
        padding: 20px;
      }

      .page-69-vm__promotion-card h3 {
        font-size: 1.3em;
      }

      .page-69-vm__about-us-section p {
        font-size: 1em;
      }

      .page-69-vm__faq-section {
        padding: 30px 15px;
      }

      .page-69-vm__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-69-vm__faq-answer {
        padding: 0 15px;
      }

      .page-69-vm__faq-item.active .page-69-vm__faq-answer {
        padding: 15px !important;
      }

      .page-69-vm__cta-section {
        padding: 30px 15px;
      }

      .page-69-vm__cta-section h2 {
        font-size: 2em;
      }

      .page-69-vm__cta-section p {
        font-size: 1em;
      }

      /* General responsive for lists (if any not covered by product-grid) */
      .page-69-vm ul,
      .page-69-vm ol {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
      }

      .page-69-vm li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }

      /* Image responsive */
      .page-69-vm img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

      .page-69-vm__product-image-container,
      .page-69-vm__promotion-card img {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  