
    .page-1bwmn {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      position: relative;
    }

    .page-1bwmn__hero-section {
      position: relative;
      background: linear-gradient(135deg, #0a1931, #1a2a46);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px 20px;
      overflow: hidden;
      padding-top: 10px; /* Decorative padding */
    }

    .page-1bwmn__hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-1bwmn__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-1bwmn__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fdd835; /* Gold/yellow for brand */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-1bwmn__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-1bwmn__cta-button {
      display: inline-block;
      background-color: #fdd835;
      color: #1a2a46;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin: 10px;
    }

    .page-1bwmn__cta-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    .page-1bwmn__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
      width: auto; /* Allow buttons to size naturally */
    }

    .page-1bwmn__floating-btn {
      background-color: #fdd835;
      color: #1a2a46;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.9em;
      min-width: 100px;
    }

    .page-1bwmn__floating-btn:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

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

    .page-1bwmn__section-title {
      font-size: 2.2em;
      color: #1a2a46;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-1bwmn__card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-1bwmn__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-1bwmn__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      width: 100%;
      object-fit: cover;
    }

    .page-1bwmn__card-title {
      font-size: 1.4em;
      color: #1a2a46;
      margin-bottom: 10px;
    }

    .page-1bwmn__card-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-1bwmn__promo-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 800px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-1bwmn__promo-item {
      background-color: #fff;
      border-left: 5px solid #fdd835;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box;
    }

    .page-1bwmn__promo-title {
      font-size: 1.3em;
      color: #1a2a46;
      margin-bottom: 5px;
    }

    .page-1bwmn__promo-text {
      color: #555;
    }

    .page-1bwmn__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-1bwmn__logo-item {
      max-width: 100%;
      height: auto;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      object-fit: contain;
      width: 150px; /* Ensure a minimum display width */
      height: 80px;
    }

    .page-1bwmn__logo-item:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-1bwmn__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .page-1bwmn__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-1bwmn__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-1bwmn__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 0;
      transition: background-color 0.3s ease;
    }

    .page-1bwmn__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-1bwmn__faq-question h3 {
      font-size: 1.1em;
      color: #1a2a46;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-1bwmn__faq-toggle {
      font-size: 1.5em;
      color: #fdd835;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-1bwmn__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

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

      .page-1bwmn__hero-subtitle {
        font-size: 1em;
      }

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

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

      .page-1bwmn__card {
        padding: 20px;
      }

      .page-1bwmn__card-title {
        font-size: 1.2em;
      }

      .page-1bwmn__promo-item {
        padding: 15px;
      }

      .page-1bwmn__promo-title {
        font-size: 1.1em;
      }

      .page-1bwmn__faq-section {
        padding: 30px 15px;
        margin: 30px auto;
      }

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

      .page-1bwmn__faq-toggle {
        font-size: 1.2em;
      }

      /* List item responsiveness */
      .page-1bwmn__promo-list,
      .page-1bwmn__grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-1bwmn__card,
      .page-1bwmn__promo-item {
        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;
        word-break: break-word !important;
      }

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

      .page-1bwmn__floating-buttons {
        flex-direction: row;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: space-around;
        bottom: 0;
        background-color: #1a2a46;
        padding: 10px 0;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
      }

      .page-1bwmn__floating-btn {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.85em;
      }
    }
  