
    .page-a-888 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: 10px; /* Decorative top padding, body has main offset */
    }

    /* Base styles for sections */
    .page-a-888__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-a-888__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-a-888__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #ccc;
    }

    .page-a-888__highlight {
      color: #ffcc00;
    }

    /* Hero Section */
    .page-a-888__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #000;
      padding: 60px 20px 40px;
      position: relative;
      overflow: hidden;
    }

    .page-a-888__hero-content {
      z-index: 2;
      position: relative;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-a-888__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #f0f0f0;
      line-height: 1.2;
    }

    .page-a-888__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-a-888__hero-cta {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-a-888__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .page-a-888__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle overlay */
      max-width: 100%; /* Important for responsiveness */
    }

    /* Buttons */
    .page-a-888__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .page-a-888__button--primary {
      background-color: #ffcc00;
      color: #1a1a1a;
      border-color: #ffcc00;
    }

    .page-a-888__button--primary:hover {
      background-color: #e6b800;
      border-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-a-888__button--secondary {
      background-color: transparent;
      color: #ffcc00;
      border-color: #ffcc00;
    }

    .page-a-888__button--secondary:hover {
      background-color: #ffcc00;
      color: #1a1a1a;
      transform: translateY(-2px);
    }

    .page-a-888__button--small {
      padding: 8px 18px;
      font-size: 0.95em;
    }

    /* Product Grid */
    .page-a-888__product-grid,
    .page-a-888__promo-grid,
    .page-a-888__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: start; /* Align items to the start of their grid cell */
    }

    .page-a-888__product-card,
    .page-a-888__promo-item,
    .page-a-888__advantage-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure cards are same height */
      box-sizing: border-box;
    }

    .page-a-888__product-image,
    .page-a-888__promo-image,
    .page-a-888__advantage-icon {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 2px solid #ffcc00;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-a-888__advantage-icon {
      width: 200px; /* Minimum size 200x200px */
      height: 200px;
      object-fit: contain; /* Icons might be better contained */
      margin: 15px auto;
      border: none;
    }

    .page-a-888__product-title,
    .page-a-888__promo-title,
    .page-a-888__advantage-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-a-888__product-text,
    .page-a-888__promo-text,
    .page-a-888__advantage-text {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
      flex-grow: 1; /* Allows text to take up available space */
    }

    .page-a-888__promo-button-wrapper {
      margin-top: 20px;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-a-888__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-a-888__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-a-888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-a-888__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-a-888__faq-question-text {
      font-size: 1.2em;
      color: #f0f0f0;
      margin: 0;
      pointer-events: none; /* Crucial for click event to bubble */
    }

    .page-a-888__faq-toggle {
      font-size: 1.8em;
      color: #ffcc00;
      font-weight: bold;
      pointer-events: none; /* Crucial for click event to bubble */
      transition: transform 0.3s ease;
    }

    .page-a-888__faq-item.active .page-a-888__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like symbol */
    }

    .page-a-888__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.4s ease;
      color: #ccc;
      font-size: 1em;
      box-sizing: border-box; /* Ensure padding is included in height */
    }

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

    .page-a-888__faq-answer p {
      margin: 0;
    }

    /* Floating Buttons */
    .page-a-888__float-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      justify-content: center;
      padding: 0 20px; /* Add padding to prevent buttons from touching edges on mobile */
      box-sizing: border-box;
    }

    .page-a-888__float-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      color: #1a1a1a;
      background-color: #ffcc00;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      min-width: 120px; /* Ensure buttons have a minimum width */
      text-align: center;
      box-sizing: border-box;
    }

    .page-a-888__float-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-a-888__float-button--login {
      background-color: #4CAF50; /* A different color for distinction */
      color: #fff;
    }

    .page-a-888__float-button--login:hover {
      background-color: #45a049;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-a-888__section {
        padding: 30px 15px;
      }

      .page-a-888__section-title {
        font-size: 1.8em;
      }

      .page-a-888__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-a-888__hero-section {
        padding: 40px 15px 30px;
      }

      .page-a-888__hero-title {
        font-size: 2em;
      }

      .page-a-888__hero-description {
        font-size: 1em;
      }

      .page-a-888__hero-cta {
        flex-direction: column;
        gap: 10px;
      }

      .page-a-888__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        font-size: 1em;
        padding: 10px 20px;
      }

      .page-a-888__product-grid,
      .page-a-888__promo-grid,
      .page-a-888__advantages-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
      }

      .page-a-888__product-card,
      .page-a-888__promo-item,
      .page-a-888__advantage-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Adjust if parent has padding */
        padding-right: 0 !important; /* Adjust if parent has padding */
      }

      .page-a-888__product-image,
      .page-a-888__promo-image,
      .page-a-888__advantage-icon {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-a-888__product-text,
      .page-a-888__promo-text,
      .page-a-888__advantage-text,
      .page-a-888__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-a-888__faq-question {
        padding: 15px 20px;
      }

      .page-a-888__faq-question-text {
        font-size: 1.1em;
      }

      .page-a-888__faq-answer {
        padding: 0 20px;
      }

      .page-a-888__faq-item.active .page-a-888__faq-answer {
        padding: 15px 20px !important;
      }

      .page-a-888__float-buttons-wrapper {
        gap: 10px;
        bottom: 15px;
        padding: 0 15px;
      }

      .page-a-888__float-button {
        font-size: 1em;
        padding: 10px 15px;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-a-888__hero-title {
        font-size: 1.8em;
      }
      .page-a-888__section-title {
        font-size: 1.6em;
      }
      .page-a-888__float-buttons-wrapper {
        flex-direction: column; /* Stack buttons on very small screens */
        gap: 8px;
        align-items: center;
      }
      .page-a-888__float-button {
        width: 100%;
        max-width: 200px; /* Limit width even when stacked */
      }
    }
  