
    /* Page-specific CSS for 88day */
.page-88day {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-bottom: 80px; /* Space for floating buttons */
}

.page-88day__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-88day__hero-section {
  text-align: center;
  padding: 10px 0 40px;
  background-color: #222;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #ffd700;
}

.page-88day__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-88day__hero-title {
  font-size: 2.8em;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-88day__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-88day__buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-88day__button {
  background-color: #008000; /* Green */
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.page-88day__button--secondary {
  background-color: #0056b3; /* Blue */
}

.page-88day__button:hover {
  background-color: #006400;
  transform: translateY(-2px);
}

.page-88day__button--secondary:hover {
  background-color: #004080;
}

.page-88day__section {
  padding: 40px 0;
  text-align: center;
}

.page-88day__section--dark {
  background-color: #1a1a1a;
}

.page-88day__section--light {
  background-color: #222;
}

.page-88day__section-title {
  font-size: 2.2em;
  color: #ffd700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-88day__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #ffd700;
}

.page-88day__text-content {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 30px;
}

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

.page-88day__feature-item {
  background-color: #2d2d2d;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #444;
}

.page-88day__feature-item:hover {
  transform: translateY(-5px);
}

.page-88day__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-88day__feature-title {
  font-size: 1.4em;
  color: #ffd700;
  margin-bottom: 10px;
}

.page-88day__feature-description {
  color: #ccc;
  font-size: 1em;
}

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

.page-88day__product-card {
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #444;
}

.page-88day__product-card:hover {
  transform: translateY(-5px);
}

.page-88day__product-image {
  width: 100%;
  height: 200px; /* Min height */
  object-fit: cover;
  display: block;
}

.page-88day__product-content {
  padding: 20px;
}

.page-88day__product-title {
  font-size: 1.3em;
  color: #ffd700;
  margin-bottom: 10px;
}

.page-88day__product-description {
  color: #ccc;
  font-size: 0.95em;
}

.page-88day__payment-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-88day__payment-provider-item {
  background-color: #2d2d2d;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 0.3s ease;
  border: 1px solid #444;
}

.page-88day__payment-provider-item:hover {
  transform: translateY(-3px);
}

.page-88day__payment-provider-logo {
  max-width: 100%;
  height: 80px; /* Ensure minimum size, but scale down if needed */
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}

.page-88day__provider-name {
  color: #ffd700;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
}

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

.page-88day__floating-button {
  background-color: #ffd700; /* Gold */
  color: #1a1a1a;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-grow: 1;
  margin: 0 5px;
  max-width: 180px;
  text-align: center;
}

.page-88day__floating-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* FAQ Section Styling */
.page-88day__faq-section {
  padding: 40px 0;
  background-color: #222;
}

.page-88day__faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-88day__faq-item {
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #2d2d2d;
  overflow: hidden;
}

.page-88day__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #3a3a3a;
  color: #ffd700;
  cursor: pointer;
  user-select: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-88day__faq-question:hover {
  background-color: #4a4a4a;
}

.page-88day__faq-question h3 {
  margin: 0;
  color: #ffd700;
  font-size: 1.2em;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-88day__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click event */
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-88day__hero-title {
    font-size: 2em;
  }

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

  .page-88day__section-title {
    font-size: 1.8em;
  }

  .page-88day__text-content {
    font-size: 1em;
  }

  .page-88day__buttons-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .page-88day__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .page-88day__features-grid,
  .page-88day__product-grid,
  .page-88day__payment-providers-grid {
    grid-template-columns: 1fr;
  }

  .page-88day__feature-item,
  .page-88day__product-card,
  .page-88day__payment-provider-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-88day__payment-providers-grid {
    padding: 0 10px;
  }

  .page-88day__payment-provider-logo {
    height: 60px; /* Adjust for smaller screens */
  }

  .page-88day__floating-buttons {
    padding: 10px 5px;
  }

  .page-88day__floating-button {
    font-size: 0.95em;
    padding: 10px 15px;
    max-width: 150px;
  }

  .page-88day__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-88day__faq-question h3 {
    font-size: 1.1em;
  }

  .page-88day__faq-answer {
    padding: 15px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}

/* Ensure all images are responsive and not filtered */
.page-88day img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover;
}

.page-88day__hero-image,
.page-88day__feature-icon,
.page-88day__product-image,
.page-88day__payment-provider-logo {
  filter: none !important; /* Ensure no color filters */
}

.page-88day__payment-provider-logo {
  object-fit: contain;
}

  