
    :root {
      --page-1bwm-primary-color: #0d47a1; /* Dark Blue */
      --page-1bwm-secondary-color: #f7b32b; /* Gold/Orange */
      --page-1bwm-text-light: #ffffff;
      --page-1bwm-text-dark: #333333;
      --page-1bwm-bg-dark: #1a1a2e; /* Dark background for sections */
      --page-1bwm-bg-light: #f4f7f6; /* Light background for contrast */
      --page-1bwm-accent-color: #e74c3c; /* Red for emphasis */
      --page-1bwm-border-radius: 8px;
    }

    .page-1bwm {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-1bwm-text-light);
      background-color: var(--page-1bwm-bg-dark); /* Overall dark background */
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-1bwm__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-1bwm__section--dark {
      background-color: var(--page-1bwm-bg-dark);
      color: var(--page-1bwm-text-light);
    }

    .page-1bwm__section--light {
      background-color: var(--page-1bwm-bg-light);
      color: var(--page-1bwm-text-dark);
    }

    .page-1bwm__heading-primary {
      font-size: 2.8em;
      color: var(--page-1bwm-secondary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-1bwm__heading-secondary {
      font-size: 2.2em;
      color: var(--page-1bwm-text-light);
      margin-bottom: 15px;
    }

    .page-1bwm__heading-tertiary {
      font-size: 1.6em;
      color: var(--page-1bwm-secondary-color);
      margin-bottom: 10px;
    }

    .page-1bwm__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1bwm__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-1bwm-secondary-color);
      color: var(--page-1bwm-bg-dark);
      text-decoration: none;
      border-radius: var(--page-1bwm-border-radius);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-1bwm__button:hover {
      background-color: #e6a220; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-1bwm__hero-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
      background-size: cover;
      background-position: center;
      color: var(--page-1bwm-text-light);
      padding: 80px 20px;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .page-1bwm__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-1bwm__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-1bwm__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-1bwm__floating-button {
      background-color: var(--page-1bwm-secondary-color);
      color: var(--page-1bwm-bg-dark);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
    }

    .page-1bwm__floating-button:hover {
      background-color: #e6a220;
      transform: translateY(-3px);
    }

    .page-1bwm__products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 20px;
    }

    .page-1bwm__product-card {
      background-color: #2a2a4a; /* Slightly lighter dark for cards */
      border-radius: var(--page-1bwm-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-1bwm-text-light);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-1bwm__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-1bwm__product-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-1bwm__product-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-1bwm-secondary-color);
    }

    .page-1bwm__product-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      color: #ccc;
    }

    .page-1bwm__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 30px auto 0 auto;
    }

    .page-1bwm__feature-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: var(--page-1bwm-border-radius);
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      color: var(--page-1bwm-text-light);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-1bwm__feature-item-title {
      font-size: 1.3em;
      color: var(--page-1bwm-secondary-color);
      margin-bottom: 10px;
    }

    .page-1bwm__feature-item-description {
      font-size: 1em;
      color: #ccc;
    }

    .page-1bwm__faq-section {
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-1bwm__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: var(--page-1bwm-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      color: var(--page-1bwm-text-light);
    }

    .page-1bwm__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333355; /* Slightly different background for question */
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-1bwm__faq-question:hover {
      background-color: #444466;
    }

    .page-1bwm__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-1bwm-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-1bwm__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-1bwm-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    /* FAQ Toggle Icon Logic */
    .page-1bwm__faq-item .page-1bwm__faq-toggle::before {
        content: "+";
    }
    .page-1bwm__faq-item.active .page-1bwm__faq-toggle::before {
        content: "−"; /* Unicode minus sign */
    }

    .page-1bwm__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      font-size: 1em;
      color: #ccc;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1bwm__heading-primary {
        font-size: 2.2em;
      }

      .page-1bwm__heading-secondary {
        font-size: 1.8em;
      }

      .page-1bwm__paragraph {
        font-size: 1em;
      }

      .page-1bwm__section {
        padding: 30px 15px;
      }

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

      .page-1bwm__feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
      }

      .page-1bwm__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1bwm__feature-item-description {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-1bwm__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-1bwm__floating-button {
        flex: 1;
        padding: 10px 15px;
        min-width: unset;
      }

      .page-1bwm__product-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-1bwm__faq-question {
        padding: 15px 20px;
      }

      .page-1bwm__faq-question h3 {
        font-size: 1.1em;
      }

      .page-1bwm__faq-answer {
        padding: 0 20px;
      }

      .page-1bwm__faq-item.active .page-1bwm__faq-answer {
        padding: 15px 20px !important;
      }
      
      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-1bwm__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  