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

    .page-188cm-wed__header-brand {
      text-align: center;
      padding: 15px 0;
      background-color: #222;
      border-bottom: 1px solid #333;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .page-188cm-wed__header-brand-logo {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffcc00;
      text-decoration: none;
      display: inline-block;
      margin: 0;
    }

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

    .page-188cm-wed__register-button,
    .page-188cm-wed__login-button {
      flex: 1;
      margin: 0 10px;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
      color: #fff;
      border: none;
      box-sizing: border-box;
      max-width: 48%; /* Ensure it doesn't take full width on larger screens */
    }

    .page-188cm-wed__register-button {
      background-color: #ff4500; /* OrangeRed */
    }

    .page-188cm-wed__register-button:hover {
      background-color: #e63e00;
    }

    .page-188cm-wed__login-button {
      background-color: #007bff; /* Blue */
    }

    .page-188cm-wed__login-button:hover {
      background-color: #0069d9;
    }

    .page-188cm-wed__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      padding-top: 10px; /* Small offset for fixed header */
    }

    .page-188cm-wed__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px;
    }

    .page-188cm-wed__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      max-width: 90%;
    }

    .page-188cm-wed__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffcc00;
    }

    .page-188cm-wed__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-188cm-wed__promo-button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-188cm-wed__promo-button:hover {
      background-color: #e6b800;
    }

    .page-188cm-wed__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-188cm-wed__section-title {
      font-size: 2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 2px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

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

    .page-188cm-wed__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-188cm-wed__card:hover {
      transform: translateY(-5px);
    }

    .page-188cm-wed__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-188cm-wed__card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-188cm-wed__card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-188cm-wed__card-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-188cm-wed__promo-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-188cm-wed__promo-item-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-188cm-wed__promo-item-description {
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-188cm-wed__promo-item-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #ff4500;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-188cm-wed__promo-item-button:hover {
      background-color: #e63e00;
    }

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

    .page-188cm-wed__logo-item {
      background-color: #333;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 120px;
      box-sizing: border-box;
    }

    .page-188cm-wed__logo-image {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .page-188cm-wed__logo-name {
      margin-top: 10px;
      font-size: 0.9em;
      color: #ffcc00;
    }

    .page-188cm-wed__faq-list {
      list-style: none;
      padding: 0;
      margin: 30px auto 0 auto;
      max-width: 800px;
    }

    .page-188cm-wed__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-188cm-wed__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: #ffcc00;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-188cm-wed__faq-question:hover {
      background-color: #444;
    }

    .page-188cm-wed__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-188cm-wed__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-188cm-wed__faq-item.active .page-188cm-wed__faq-toggle {
      transform: rotate(45deg);
    }

    .page-188cm-wed__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: #ccc;
      font-size: 0.95em;
    }

    .page-188cm-wed__faq-item.active .page-188cm-wed__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-188cm-wed__header-brand-logo {
        font-size: 2em;
      }

      .page-188cm-wed__hero-title {
        font-size: 1.8em;
      }

      .page-188cm-wed__hero-description {
        font-size: 1em;
      }

      .page-188cm-wed__promo-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-188cm-wed__section {
        padding: 30px 15px;
      }

      .page-188cm-wed__section-title {
        font-size: 1.8em;
      }

      .page-188cm-wed__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-188cm-wed__card-title {
        font-size: 1.2em;
      }

      .page-188cm-wed__card-description {
        font-size: 0.9em;
      }

      .page-188cm-wed__promo-item-title {
        font-size: 1.3em;
      }

      .page-188cm-wed__promo-item-description {
        font-size: 0.9em;
      }

      .page-188cm-wed__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-188cm-wed__logo-item {
        height: 100px;
        padding: 10px;
      }

      .page-188cm-wed__logo-image {
        max-height: 60px;
      }

      .page-188cm-wed__logo-name {
        font-size: 0.8em;
      }

      .page-188cm-wed__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-188cm-wed__faq-question h3 {
        font-size: 1em;
      }

      .page-188cm-wed__faq-answer {
        font-size: 0.85em;
        padding: 0 15px;
      }

      .page-188cm-wed__faq-item.active .page-188cm-wed__faq-answer {
        padding: 15px !important;
      }

      .page-188cm-wed__floating-buttons {
        padding: 8px 0;
      }

      .page-188cm-wed__register-button,
      .page-188cm-wed__login-button {
        font-size: 1em;
        padding: 10px 15px;
        margin: 0 5px;
      }
      
      /* List item responsive requirements */
      .page-188cm-wed__grid .page-188cm-wed__card,
      .page-188cm-wed__logo-grid .page-188cm-wed__logo-item,
      .page-188cm-wed__faq-list .page-188cm-wed__faq-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-188cm-wed__faq-list,
      .page-188cm-wed__grid,
      .page-188cm-wed__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  