.page-app-download-features-intro {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-app-download-features-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-app-download-features-intro__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-app-download-features-intro__hero .page-app-download-features-intro__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-app-download-features-intro__hero .page-app-download-features-intro__container {
    flex-direction: row;
    text-align: left;
  }
  .page-app-download-features-intro__hero-content {
    flex: 1;
  }
  .page-app-download-features-intro__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

.page-app-download-features-intro__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Glory Gold for emphasis */
  line-height: 1.2;
}

.page-app-download-features-intro__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-app-download-features-intro__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .page-app-download-features-intro__hero-actions {
    justify-content: flex-start;
  }
}

.page-app-download-features-intro__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-app-download-features-intro__btn--primary {
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  border: 2px solid #FFD700;
}

.page-app-download-features-intro__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-app-download-features-intro__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Glory Gold */
  border: 2px solid #FFD700;
}

.page-app-download-features-intro__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
}

.page-app-download-features-intro__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-app-download-features-intro__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-features-intro__section {
  padding: 60px 0;
}

.page-app-download-features-intro__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-app-download-features-intro__section:nth-of-type(even) {
  background-color: #fff;
}

.page-app-download-features-intro__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.page-app-download-features-intro__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

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

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

.page-app-download-features-intro__feature-item:hover {
  transform: translateY(-5px);
}

.page-app-download-features-intro__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-app-download-features-intro__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-app-download-features-intro__feature-description {
  color: #666;
  font-size: 1em;
}

.page-app-download-features-intro__detailed-features .page-app-download-features-intro__feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .page-app-download-features-intro__detailed-features .page-app-download-features-intro__feature-block {
    flex-direction: row;
    text-align: left;
  }
  .page-app-download-features-intro__detailed-features .page-app-download-features-intro__feature-block--reverse {
    flex-direction: row-reverse;
    text-align: right;
  }
}

.page-app-download-features-intro__feature-text {
  flex: 1;
}

.page-app-download-features-intro__feature-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .page-app-download-features-intro__detailed-features .page-app-download-features-intro__feature-block:nth-child(odd) .page-app-download-features-intro__feature-image-wrapper {
    justify-content: flex-end;
  }
  .page-app-download-features-intro__detailed-features .page-app-download-features-intro__feature-block:nth-child(even) .page-app-download-features-intro__feature-image-wrapper {
    justify-content: flex-start;
  }
}

.page-app-download-features-intro__feature-block-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

.page-app-download-features-intro__feature-block p {
  margin-bottom: 20px;
  color: #444;
}

.page-app-download-features-intro__feature-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-app-download-features-intro__feature-block ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-app-download-features-intro__feature-block ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-app-download-features-intro__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-features-intro__download-guide .page-app-download-features-intro__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-features-intro__step-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-app-download-features-intro__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-app-download-features-intro__step-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #003366;
}

.page-app-download-features-intro__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  margin-top: 25px; /* Adjust for pseudo-element */
}

.page-app-download-features-intro__step-item p {
  color: #666;
}

.page-app-download-features-intro__download-cta {
  text-align: center;
  margin-top: 50px;
}

.page-app-download-features-intro__qr-code-section {
  text-align: center;
  margin-top: 40px;
  background-color: #e6eef5; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
}

.page-app-download-features-intro__qr-code-text {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-features-intro__qr-code-image {
  width: 180px;
  height: 180px;
  border: 5px solid #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-features-intro__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-features-intro__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-features-intro__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-app-download-features-intro__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-app-download-features-intro__faq-answer {
  color: #555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
  padding-top: 0;
}

.page-app-download-features-intro__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-app-download-features-intro__cta-final {
  background: linear-gradient(135deg, #003366, #336699);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-app-download-features-intro__cta-content {
  max-width: 900px;
}

.page-app-download-features-intro__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-app-download-features-intro__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .page-app-download-features-intro__hero {
    padding: 60px 0;
  }
  .page-app-download-features-intro__hero-title {
    font-size: 2.2em;
  }
  .page-app-download-features-intro__hero-description {
    font-size: 1em;
  }
  .page-app-download-features-intro__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-features-intro__section-title {
    font-size: 2em;
  }
  .page-app-download-features-intro__section-intro {
    font-size: 1em;
  }
  .page-app-download-features-intro__features-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-features-intro__feature-block {
    flex-direction: column;
  }
  .page-app-download-features-intro__feature-block--reverse {
    flex-direction: column;
    text-align: left;
  }
  .page-app-download-features-intro__feature-block-title {
    font-size: 1.8em;
  }
  .page-app-download-features-intro__cta-title {
    font-size: 2em;
  }
  .page-app-download-features-intro__cta-description {
    font-size: 1em;
  }
}