.page-resources-m88-mobile-app-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background #111 (dark), so text is light */
  background-color: #111; /* Fallback if shared.css doesn't apply */
}

.page-resources-m88-mobile-app-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  background-color: #017439; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-m88-mobile-app-review__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-m88-mobile-app-review__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-m88-mobile-app-review__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-m88-mobile-app-review__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-m88-mobile-app-review__btn-primary,
.page-resources-m88-mobile-app-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

/* Register/Login buttons - using brand primary color for background and white for text to ensure WCAG AA contrast (8.55:1) */
.page-resources-m88-mobile-app-review__btn-primary {
  background-color: #017439; /* Brand primary color for good contrast */
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-m88-mobile-app-review__btn-primary:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

.page-resources-m88-mobile-app-review__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-m88-mobile-app-review__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-m88-mobile-app-review__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-m88-mobile-app-review__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8); /* Allow brightness filter for background image to enhance text readability */
}

.page-resources-m88-mobile-app-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-m88-mobile-app-review__section-title {
  font-size: 2em;
  color: #017439; /* Brand primary color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-m88-mobile-app-review h3 {
  font-size: 1.5em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-m88-mobile-app-review p {
  margin-bottom: 15px;
  color: #f0f0f0; /* Light text for dark background */
}

.page-resources-m88-mobile-app-review__image-container {
  text-align: center;
  margin: 30px 0;
}

.page-resources-m88-mobile-app-review__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-m88-mobile-app-review__pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-resources-m88-mobile-app-review__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for card background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-m88-mobile-app-review__card-title {
  color: #017439;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-resources-m88-mobile-app-review__list {
  list-style: disc;
  margin-left: 20px;
  color: #f0f0f0;
}

.page-resources-m88-mobile-app-review__list li {
  margin-bottom: 8px;
}

.page-resources-m88-mobile-app-review__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-m88-mobile-app-review__faq-list {
  margin-top: 30px;
}

.page-resources-m88-mobile-app-review__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-m88-mobile-app-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-resources-m88-mobile-app-review__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-m88-mobile-app-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-m88-mobile-app-review__faq-qtext {
  flex-grow: 1;
}

.page-resources-m88-mobile-app-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-m88-mobile-app-review__faq-answer {
  padding: 15px 25px;
  color: #f0f0f0;
  font-size: 0.95em;
}

.page-resources-m88-mobile-app-review__faq-item[open] .page-resources-m88-mobile-app-review__faq-question {
  background-color: rgba(255, 255, 255, 0.2);
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-m88-mobile-app-review__main-title {
    font-size: 2.2em;
  }

  .page-resources-m88-mobile-app-review__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-m88-mobile-app-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-m88-mobile-app-review__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-m88-mobile-app-review__main-title {
    font-size: 1.8em;
  }

  .page-resources-m88-mobile-app-review__hero-description {
    font-size: 1em;
  }

  .page-resources-m88-mobile-app-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-m88-mobile-app-review__btn-primary,
  .page-resources-m88-mobile-app-review__btn-secondary,
  .page-resources-m88-mobile-app-review a[class*="button"],
  .page-resources-m88-mobile-app-review a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-m88-mobile-app-review__cta-buttons,
  .page-resources-m88-mobile-app-review__button-group,
  .page-resources-m88-mobile-app-review__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-m88-mobile-app-review__content-area,
  .page-resources-m88-mobile-app-review__section,
  .page-resources-m88-mobile-app-review__card,
  .page-resources-m88-mobile-app-review__container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-m88-mobile-app-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-m88-mobile-app-review__section-title {
    font-size: 1.6em;
  }

  .page-resources-m88-mobile-app-review h3 {
    font-size: 1.3em;
  }

  .page-resources-m88-mobile-app-review__pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-m88-mobile-app-review__faq-question {
    padding: 15px 20px;
  }

  .page-resources-m88-mobile-app-review__faq-answer {
    padding: 10px 20px;
  }
}