
    /* General styles for the page */
.page-888-b {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
}

/* Section spacing */
.page-888-b section {
  padding: 60px 20px;
}

/* Section titles */
.page-888-b__section-title {
  color: #e94560; /* Accent color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  padding-top: 20px; /* Add some padding above titles */
}

.page-888-b__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #cccccc;
}

/* Floating Register/Login Buttons */
.page-888-b__floating-button {
  position: fixed;
  bottom: 20px;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 1.1em;
  display: block; 
  width: 120px;
}

.page-888-b__register-button {
  left: 20px;
  background-color: #e94560; /* Primary accent color */
}

.page-888-b__login-button {
  right: 20px;
  background-color: #0f3460; /* Secondary accent color */
}

.page-888-b__floating-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Hero Section */
.page-888-b__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Minimal padding-top as body handles header offset */
  padding-bottom: 60px;
  box-sizing: border-box;
}

.page-888-b__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-888-b__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-888-b__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #fff;
}

.page-888-b__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-888-b__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-888-b__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-888-b__hero-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-888-b__hero-button--primary {
  background-color: #e94560;
  color: #fff;
}

.page-888-b__hero-button--primary:hover {
  background-color: #d13a52;
  transform: translateY(-2px);
}

.page-888-b__hero-button--secondary {
  background-color: #0f3460;
  color: #fff;
  border: 2px solid #0f3460;
}

.page-888-b__hero-button--secondary:hover {
  background-color: transparent;
  border-color: #e94560;
  transform: translateY(-2px);
}

/* About Section */
.page-888-b__about-section {
  background-color: #1a1a2e;
}

.page-888-b__about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-888-b__about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.page-888-b__about-text {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
  color: #cccccc;
  font-size: 1.1em;
}

.page-888-b__about-text p {
  margin-bottom: 15px;
}

/* Products Section */
.page-888-b__products-section {
  background-color: #1f283d;
}

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

.page-888-b__product-item {
  background-color: #2a3a5a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-888-b__product-item:hover {
  transform: translateY(-5px);
}

.page-888-b__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}

.page-888-b__product-title {
  color: #e94560;
  font-size: 1.5em;
  margin: 20px 15px 10px 15px;
}

.page-888-b__product-description {
  color: #cccccc;
  font-size: 0.95em;
  margin: 0 15px 20px 15px;
}

.page-888-b__product-button {
  background-color: #e94560;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-888-b__product-button:hover {
  background-color: #d13a52;
}

.page-888-b__provider-info {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-888-b__promotions-section {
  background-color: #1a1a2e;
}

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

.page-888-b__promotion-item {
  background-color: #2a3a5a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-888-b__promotion-item:hover {
  transform: translateY(-5px);
}

.page-888-b__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}

.page-888-b__promotion-title {
  color: #e94560;
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
}

.page-888-b__promotion-description {
  color: #cccccc;
  font-size: 0.95em;
  margin: 0 15px 20px 15px;
}

/* Why Choose Us Section (Features) */
.page-888-b__features-section {
  background-color: #1f283d;
}

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

.page-888-b__feature-item {
  background-color: #2a3a5a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease;
}

.page-888-b__feature-item:hover {
  transform: translateY(-5px);
}

.page-888-b__feature-image {
  width: 250px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}

.page-888-b__feature-title {
  color: #e94560;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-888-b__feature-description {
  color: #cccccc;
  font-size: 0.95em;
}

/* FAQ Section */
.page-888-b__faq-section {
  background-color: #1a1a2e;
}

.page-888-b__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-888-b__faq-item {
  background-color: #2a3a5a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-888-b__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #334a70; /* Slightly lighter for question header */
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-888-b__faq-question:hover {
  background-color: #405a80;
}

.page-888-b__faq-question-title {
  margin: 0;
  color: inherit;
  pointer-events: none; /* Prevent h3 from blocking click */
  flex-grow: 1;
}

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

.page-888-b__faq-item.active .page-888-b__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or use '−' */
}

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

.page-888-b__faq-item.active .page-888-b__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

/* Call to Action Section */
.page-888-b__cta-section {
  background-color: #1f283d;
  text-align: center;
}

.page-888-b__cta-button {
  display: inline-block;
  background-color: #e94560;
  color: #fff;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-888-b__cta-button:hover {
  background-color: #d13a52;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-888-b__hero-title {
    font-size: 2.5em;
  }

  .page-888-b__hero-description {
    font-size: 1.1em;
  }

  .page-888-b__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-888-b__hero-button {
    width: 80%;
    margin: 0 auto;
    padding: 12px 25px;
  }

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

  .page-888-b__about-content {
    flex-direction: column;
  }

  .page-888-b__about-image {
    max-width: 90%;
  }

  .page-888-b__about-text {
    max-width: 90%;
    text-align: center;
  }

  /* List items responsive rules - applied to product, promotion, feature items */
  .page-888-b__product-item,
  .page-888-b__promotion-item,
  .page-888-b__feature-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-888-b__product-grid,
  .page-888-b__promotion-list,
  .page-888-b__feature-grid {
    padding: 0 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-888-b__product-description,
  .page-888-b__promotion-description,
  .page-888-b__feature-description,
  .page-888-b__about-text p,
  .page-888-b__provider-info,
  .page-888-b__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Images responsive rules */
  .page-888-b__hero-background-image,
  .page-888-b__about-image,
  .page-888-b__product-image,
  .page-888-b__promotion-image,
  .page-888-b__feature-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-888-b__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

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

  .page-888-b__floating-button {
    width: 100px;
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-888-b__register-button {
    left: 10px;
  }

  .page-888-b__login-button {
    right: 10px;
  }
}
  