.page-resources-rr88-app-new-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background, so main text is light */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-resources-rr88-app-new-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-rr88-app-new-features__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-resources-rr88-app-new-features__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-rr88-app-new-features__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-rr88-app-new-features__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-rr88-app-new-features__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: auto;
  opacity: 0.7;
  z-index: 0;
}

.page-resources-rr88-app-new-features__section {
  padding: 60px 0;
}

.page-resources-rr88-app-new-features__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles */
}

.page-resources-rr88-app-new-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff; /* Light text for dark background */
}

.page-resources-rr88-app-new-features__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-rr88-app-new-features__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-resources-rr88-app-new-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-rr88-app-new-features__card {
  background-color: #262626; /* Darker card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-resources-rr88-app-new-features__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-rr88-app-new-features__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-resources-rr88-app-new-features__card-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-rr88-app-new-features__card-text {
  font-size: 1em;
  color: #cccccc;
}

.page-resources-rr88-app-new-features__benefit-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-resources-rr88-app-new-features__benefit-item {
  background-color: #262626;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-rr88-app-new-features__benefit-item strong {
  color: #26A9E0;
}

.page-resources-rr88-app-new-features__download-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 30px;
  color: #ffffff;
}

.page-resources-rr88-app-new-features__step-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #cccccc;
}

.page-resources-rr88-app-new-features__step-item strong {
  color: #26A9E0;
}

.page-resources-rr88-app-new-features__cta-download-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-rr88-app-new-features__faq-list {
  margin-top: 40px;
}

.page-resources-rr88-app-new-features__faq-item {
  background-color: #262626;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-rr88-app-new-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #333333; /* Darker background for question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-resources-rr88-app-new-features__faq-question:hover {
  background-color: #444444;
}

.page-resources-rr88-app-new-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-rr88-app-new-features__faq-qtext {
  flex-grow: 1;
}

.page-resources-rr88-app-new-features__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-resources-rr88-app-new-features__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #cccccc;
  background-color: #262626;
}

.page-resources-rr88-app-new-features__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a7bb0, #26A9E0);
}

.page-resources-rr88-app-new-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-rr88-app-new-features__btn-primary,
.page-resources-rr88-app-new-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.page-resources-rr88-app-new-features__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-rr88-app-new-features__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-rr88-app-new-features__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-rr88-app-new-features__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-rr88-app-new-features__hero-title {
    font-size: 3em;
  }
  .page-resources-rr88-app-new-features__section-title {
    font-size: 2em;
  }
  .page-resources-rr88-app-new-features__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-rr88-app-new-features__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-resources-rr88-app-new-features {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-rr88-app-new-features__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-rr88-app-new-features__hero-title {
    font-size: 2.5em;
  }
  .page-resources-rr88-app-new-features__hero-description {
    font-size: 1em;
  }
  .page-resources-rr88-app-new-features__hero-cta,
  .page-resources-rr88-app-new-features__cta-download-section,
  .page-resources-rr88-app-new-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-rr88-app-new-features__btn-primary,
  .page-resources-rr88-app-new-features__btn-secondary {
    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-rr88-app-new-features__section-title {
    font-size: 1.8em;
  }
  .page-resources-rr88-app-new-features__text-block {
    font-size: 0.95em;
  }
  .page-resources-rr88-app-new-features__card {
    padding: 20px;
  }
  .page-resources-rr88-app-new-features__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-rr88-app-new-features__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-rr88-app-new-features__faq-answer {
    padding: 0 20px 15px;
  }
  /* Ensure all image containers are responsive */
  .page-resources-rr88-app-new-features__section,
  .page-resources-rr88-app-new-features__card,
  .page-resources-rr88-app-new-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-rr88-app-new-features img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}