.page-download-center-mobile-app-tutorial {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-download-center-mobile-app-tutorial a {
  color: #0A2E59;
  text-decoration: none;
}

.page-download-center-mobile-app-tutorial a:hover {
  text-decoration: underline;
}

.page-download-center-mobile-app-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-mobile-app-tutorial__hero-section {
  background: linear-gradient(135deg, #0A2E59 0%, #3a5d8b 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-mobile-app-tutorial__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff; /* Ensure title is white on dark background */
}

.page-download-center-mobile-app-tutorial__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Slightly off-white for readability */
}

.page-download-center-mobile-app-tutorial__hero-description a {
  color: #FFA500; /* Orange links for contrast */
}

.page-download-center-mobile-app-tutorial__cta-button {
  display: inline-block;
  background-color: #FFA500;
  color: #0A2E59;
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-download-center-mobile-app-tutorial__cta-button:hover {
  background-color: #ffb733; /* Lighter orange on hover */
  transform: translateY(-2px);
  text-decoration: none;
}

.page-download-center-mobile-app-tutorial__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-download-center-mobile-app-tutorial__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-download-center-mobile-app-tutorial__content-section {
  padding: 60px 0;
}

.page-download-center-mobile-app-tutorial__section-title {
  font-size: 2em;
  color: #0A2E59;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-download-center-mobile-app-tutorial__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFA500;
  border-radius: 2px;
}

.page-download-center-mobile-app-tutorial__sub-section-heading {
  font-size: 1.5em;
  color: #0A2E59;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-download-center-mobile-app-tutorial__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-download-center-mobile-app-tutorial__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-mobile-app-tutorial__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-download-center-mobile-app-tutorial__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-download-center-mobile-app-tutorial__feature-heading {
  font-size: 1.3em;
  color: #0A2E59;
  margin-bottom: 10px;
}

.page-download-center-mobile-app-tutorial__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-download-center-mobile-app-tutorial__step-list li {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
}

.page-download-center-mobile-app-tutorial__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #FFA500;
  color: #0A2E59;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-download-center-mobile-app-tutorial__step-heading {
  font-size: 1.4em;
  color: #0A2E59;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-download-center-mobile-app-tutorial__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-app-tutorial__bullet-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-download-center-mobile-app-tutorial__bullet-list li {
  margin-bottom: 10px;
  color: #444;
}

.page-download-center-mobile-app-tutorial__inline-button {
  display: inline-block;
  background-color: #0A2E59;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 10px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.page-download-center-mobile-app-tutorial__inline-button:hover {
  background-color: #1c4a7e;
  text-decoration: none;
}

.page-download-center-mobile-app-tutorial__faq-section {
  margin-top: 40px;
}

.page-download-center-mobile-app-tutorial__faq-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-app-tutorial__faq-question {
  font-size: 1.2em;
  color: #0A2E59;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-mobile-app-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFA500;
}

.page-download-center-mobile-app-tutorial__faq-question.active::after {
  content: '-';
}

.page-download-center-mobile-app-tutorial__faq-answer {
  display: none;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 3px solid #FFA500;
  color: #555;
}

.page-download-center-mobile-app-tutorial__faq-answer.active {
  display: block;
}

.page-download-center-mobile-app-tutorial__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-center-mobile-app-tutorial__hero-title {
    font-size: 2em;
  }

  .page-download-center-mobile-app-tutorial__hero-description {
    font-size: 1em;
  }

  .page-download-center-mobile-app-tutorial__section-title {
    font-size: 1.8em;
  }

  .page-download-center-mobile-app-tutorial__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-download-center-mobile-app-tutorial__step-list li {
    padding-left: 25px;
    padding-top: 55px;
  }

  .page-download-center-mobile-app-tutorial__step-list li::before {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .page-download-center-mobile-app-tutorial__hero-section {
    padding: 60px 0;
  }

  .page-download-center-mobile-app-tutorial__hero-title {
    font-size: 1.6em;
  }

  .page-download-center-mobile-app-tutorial__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-mobile-app-tutorial__section-title {
    font-size: 1.5em;
  }

  .page-download-center-mobile-app-tutorial__sub-section-heading {
    font-size: 1.3em;
  }

  .page-download-center-mobile-app-tutorial__feature-item {
    padding: 20px;
  }

  .page-download-center-mobile-app-tutorial__step-heading {
    font-size: 1.2em;
  }
}