
    /* General page styling */
    .page-789-b1-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7fa;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

    .page-789-b1-com__section-title {
      font-size: 2.5em;
      color: #1a2a41;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
      margin-top: 60px;
    }

    .page-789-b1-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ff4500; /* Accent color */
      border-radius: 2px;
    }

    /* Hero Section */
    .page-789-b1-com__hero-section {
      background: linear-gradient(135deg, #1a2a41, #0f1c2d);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789-b1-com__hero-content {
      max-width: 800px;
      margin: 0 auto;
      z-index: 1;
    }

    .page-789-b1-com__main-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffdf00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-789-b1-com__hero-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .page-789-b1-com__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Buttons */
    .page-789-b1-com__button {
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      border: none;
    }

    .page-789-b1-com__button--primary {
      background-color: #ff4500; /* Orange-Red */
      color: #fff;
      box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    }

    .page-789-b1-com__button--primary:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
    }

    .page-789-b1-com__button--secondary {
      background-color: transparent;
      color: #ffdf00; /* Gold */
      border: 2px solid #ffdf00;
    }

    .page-789-b1-com__button--secondary:hover {
      background-color: #ffdf00;
      color: #1a2a41;
      transform: translateY(-2px);
    }

    .page-789-b1-com__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 20px;
    }

    /* Features Section */
    .page-789-b1-com__features-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789-b1-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789-b1-com__feature-item {
      background-color: #fff;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-789-b1-com__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-789-b1-com__feature-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      object-fit: cover;
      min-height: 200px; /* Enforce min image size */
      min-width: 200px;
    }

    .page-789-b1-com__feature-title {
      font-size: 1.8em;
      color: #1a2a41;
      margin-bottom: 15px;
    }

    .page-789-b1-com__feature-text {
      font-size: 1em;
      color: #555;
    }

    /* Products Section */
    .page-789-b1-com__products-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #eef3f8;
      border-radius: 20px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .page-789-b1-com__products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789-b1-com__product-card {
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-789-b1-com__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-789-b1-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      display: block;
    }

    .page-789-b1-com__product-title {
      font-size: 1.6em;
      color: #1a2a41;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-789-b1-com__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-789-b1-com__promotions-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789-b1-com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789-b1-com__promotion-card {
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-789-b1-com__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-789-b1-com__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      display: block;
    }

    .page-789-b1-com__promotion-title {
      font-size: 1.7em;
      color: #ff4500;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-789-b1-com__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    /* Call to Action Section */
    .page-789-b1-com__cta-section {
      background: linear-gradient(90deg, #ff4500, #ff8c00);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      margin-top: 60px;
      border-radius: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-789-b1-com__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789-b1-com__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* FAQ Section */
    .page-789-b1-com__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      margin-bottom: 60px;
    }

    .page-789-b1-com__faq-container {
      margin-top: 40px;
    }

    .page-789-b1-com__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-789-b1-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789-b1-com__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-789-b1-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a41;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-789-b1-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4500;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-789-b1-com__faq-item.active .page-789-b1-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-789-b1-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #444;
      background-color: #fff;
    }

    .page-789-b1-com__faq-item.active .page-789-b1-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-789-b1-com__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some spacing */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789-b1-com__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        margin-top: 40px;
      }

      .page-789-b1-com__main-title {
        font-size: 2.5em;
      }

      .page-789-b1-com__hero-description {
        font-size: 1em;
      }

      .page-789-b1-com__hero-buttons,
      .page-789-b1-com__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-789-b1-com__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-789-b1-com__features-grid,
      .page-789-b1-com__products-grid,
      .page-789-b1-com__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-789-b1-com__feature-item,
      .page-789-b1-com__product-card,
      .page-789-b1-com__promotion-card {
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789-b1-com__feature-image,
      .page-789-b1-com__product-image,
      .page-789-b1-com__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-789-b1-com__feature-title {
        font-size: 1.5em;
      }

      .page-789-b1-com__product-title,
      .page-789-b1-com__promotion-title {
        font-size: 1.4em;
      }

      .page-789-b1-com__hero-section,
      .page-789-b1-com__features-section,
      .page-789-b1-com__products-section,
      .page-789-b1-com__promotions-section,
      .page-789-b1-com__cta-section,
      .page-789-b1-com__faq-section {
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-789-b1-com__faq-question {
        padding: 15px 20px;
      }

      .page-789-b1-com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-789-b1-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-789-b1-com__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-789-b1-com__main-title {
        font-size: 2em;
      }
      .page-789-b1-com__section-title {
        font-size: 1.8em;
      }
    }

    /* Ensure contrast */
    .page-789-b1-com p, .page-789-b1-com__feature-text, .page-789-b1-com__product-description, .page-789-b1-com__promotion-description, .page-789-b1-com__faq-answer p {
      color: #333; /* Darker text for contrast */
    }
    .page-789-b1-com__hero-description, .page-789-b1-com__cta-description {
      color: #fff; /* White text on dark/gradient background */
    }
  