.page-index-app-features {
  color: #333333; /* Default text color for light body background */
}

.page-index-app-features__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #007bff; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-app-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 1;
}

.page-index-app-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-index-app-features__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-app-features__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-index-app-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-index-app-features__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-app-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-app-features__btn--primary {
  background-color: #ffc107; /* Auxiliary brand color */
  color: #000000;
}

.page-index-app-features__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-app-features__btn--secondary {
  background-color: #0056b3; /* Darker shade of main brand color */
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-index-app-features__btn--secondary:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

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

.page-index-app-features__section-title {
  font-size: 2.8em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-index-app-features__section-intro {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-index-app-features__features-overview-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-index-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-app-features__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-app-features__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-app-features__feature-icon {
  width: 400px; /* Ensures image is not too small */
  height: 300px; /* Ensures image is not too small */
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-index-app-features__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-app-features__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

.page-index-app-features__why-choose-section {
  padding: 80px 0;
}

.page-index-app-features__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.page-index-app-features__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
  max-width: 550px;
}

.page-index-app-features__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 550px;
}

.page-index-app-features__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index-app-features__list-item::before {
  content: '✔';
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-app-features__download-guide-section {
  padding: 80px 0;
  background-color: #eaf6ff; /* Light blue background */
}

.page-index-app-features__steps-list {
  list-style: decimal;
  padding-left: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.page-index-app-features__steps-list .page-index-app-features__list-item {
  margin-bottom: 15px;
  padding-left: 10px;
}

.page-index-app-features__steps-list .page-index-app-features__list-item strong {
  color: #007bff;
}

.page-index-app-features__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-index-app-features__faq-section {
  padding: 80px 0;
}

.page-index-app-features__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-app-features__faq-question {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-app-features__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-index-app-features__cta-section {
  background-color: #007bff;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-app-features__cta-container {
  max-width: 900px;
}

.page-index-app-features__cta-title {
  font-size: 3em;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-index-app-features__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-app-features__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-app-features__hero-title {
    font-size: 3em;
  }
  .page-index-app-features__hero-description {
    font-size: 1.2em;
  }
  .page-index-app-features__section-title {
    font-size: 2.5em;
  }
  .page-index-app-features__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-app-features__hero-section {
    padding: 40px 15px;
  }
  .page-index-app-features__hero-title {
    font-size: 2.5em;
  }
  .page-index-app-features__hero-description {
    font-size: 1em;
  }
  .page-index-app-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-app-features__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-app-features__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-index-app-features__section-intro,
  .page-index-app-features__paragraph {
    font-size: 0.95em;
  }
  .page-index-app-features__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-app-features__feature-card {
    padding: 25px;
  }
  .page-index-app-features__feature-icon {
    width: 100%; /* Ensures images in cards are responsive */
    height: auto; /* Maintains aspect ratio */
    max-width: 400px; /* Example max-width to prevent overly large images, still >200px */
  }
  .page-index-app-features__why-choose-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-app-features__cta-title {
    font-size: 2em;
  }
  .page-index-app-features__cta-description {
    font-size: 1em;
  }
  .page-index-app-features__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Mobile content area images must be constrained */
  .page-index-app-features img {
    max-width: 100%;
    height: auto;
  }
  .page-index-app-features__hero-image img,
  .page-index-app-features__feature-icon,
  .page-index-app-features__why-choose-image img,
  .page-index-app-features__download-image img,
  .page-index-app-features__faq-image img,
  .page-index-app-features__cta-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-app-features__hero-title {
    font-size: 2em;
  }
  .page-index-app-features__section-title {
    font-size: 1.8em;
  }
  .page-index-app-features__card-title {
    font-size: 1.5em;
  }
  .page-index-app-features__faq-question {
    font-size: 1.3em;
  }
  .page-index-app-features__cta-title {
    font-size: 1.8em;
  }
  .page-index-app-features__hero-actions {
    gap: 10px;
  }
}