/* style/resources-mobile-app-download.css */
.page-resources-mobile-app-download {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-mobile-app-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-mobile-app-download__hero {
  background: linear-gradient(135deg, #0A2239, #2A4A6A);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-mobile-app-download__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-mobile-app-download__hero > .page-resources-mobile-app-download__container {
  position: relative;
  z-index: 1;
}

.page-resources-mobile-app-download__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mobile-app-download__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-mobile-app-download__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-mobile-app-download__button--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-resources-mobile-app-download__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-mobile-app-download__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-mobile-app-download__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-resources-mobile-app-download__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-mobile-app-download__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-resources-mobile-app-download__section--dark {
  background-color: #0A2239;
  color: #f0f0f0;
}

.page-resources-mobile-app-download__section--dark .page-resources-mobile-app-download__section-title,
.page-resources-mobile-app-download__section--dark .page-resources-mobile-app-download__section-description {
  color: #FFD700;
}

.page-resources-mobile-app-download__section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-mobile-app-download__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-mobile-app-download__section-title--light {
  color: #FFD700;
}

.page-resources-mobile-app-download__section-title--light::after {
  background-color: #FFD700;
}

.page-resources-mobile-app-download__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px;
  color: #666;
}

.page-resources-mobile-app-download__section-description--light {
  color: #ccc;
}

.page-resources-mobile-app-download__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-mobile-app-download__text-content {
  flex: 1;
  min-width: 300px;
}

.page-resources-mobile-app-download__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-resources-mobile-app-download__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-app-download__image--small {
  max-width: 300px;
  margin: 20px auto;
  display: block;
}

.page-resources-mobile-app-download__image-wrapper--large .page-resources-mobile-app-download__image {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.page-resources-mobile-app-download__sub-section-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-mobile-app-download__section--dark .page-resources-mobile-app-download__sub-section-title {
  color: #FFD700;
}

.page-resources-mobile-app-download__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.page-resources-mobile-app-download__section--dark .page-resources-mobile-app-download__list {
  color: #ccc;
}

.page-resources-mobile-app-download__list li {
  margin-bottom: 10px;
}

.page-resources-mobile-app-download__list--small {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-resources-mobile-app-download__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mobile-app-download__step-card {
  background-color: #1A3750;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-resources-mobile-app-download__step-card .page-resources-mobile-app-download__list {
  list-style: decimal;
  color: #eee;
}

.page-resources-mobile-app-download__step-card .page-resources-mobile-app-download__list a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-mobile-app-download__step-card .page-resources-mobile-app-download__list a:hover {
  color: #fff;
}

.page-resources-mobile-app-download__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-mobile-app-download__qr-code-wrapper {
  text-align: center;
  margin: 20px 0;
}

.page-resources-mobile-app-download__qr-code {
  width: 150px;
  height: 150px;
  border: 5px solid #FFD700;
  border-radius: 5px;
}

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

.page-resources-mobile-app-download__feature-item {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-resources-mobile-app-download__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-mobile-app-download__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-resources-mobile-app-download__feature-title {
  font-size: 1.5em;
  color: #0A2239;
  margin-bottom: 15px;
}

.page-resources-mobile-app-download__feature-item p {
  color: #555;
}

.page-resources-mobile-app-download__section--faq {
  background-color: #f0f4f7;
}

.page-resources-mobile-app-download__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-resources-mobile-app-download__faq-question {
  font-size: 1.4em;
  color: #0A2239;
  margin-bottom: 10px;
}

.page-resources-mobile-app-download__faq-answer {
  color: #444;
}

.page-resources-mobile-app-download__section--cta {
  background: linear-gradient(90deg, #0A2239, #1A3750);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-mobile-app-download__small-text {
  font-size: 0.9em;
  margin-top: 30px;
  color: #aaa;
}

.page-resources-mobile-app-download__small-text--light {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-mobile-app-download__hero {
    padding: 60px 0;
  }

  .page-resources-mobile-app-download__title {
    font-size: 2.5em;
  }

  .page-resources-mobile-app-download__subtitle {
    font-size: 1.1em;
  }

  .page-resources-mobile-app-download__flex-content {
    flex-direction: column;
  }

  .page-resources-mobile-app-download__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }

  .page-resources-mobile-app-download__download-steps {
    grid-template-columns: 1fr;
  }

  .page-resources-mobile-app-download__step-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-resources-mobile-app-download__section {
    padding: 40px 0;
  }

  .page-resources-mobile-app-download__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-resources-mobile-app-download__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-resources-mobile-app-download__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-mobile-app-download__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .page-resources-mobile-app-download__hero {
    padding: 40px 0;
  }

  .page-resources-mobile-app-download__title {
    font-size: 2em;
  }

  .page-resources-mobile-app-download__subtitle {
    font-size: 0.9em;
  }

  .page-resources-mobile-app-download__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }

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

  .page-resources-mobile-app-download__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-mobile-app-download__faq-question {
    font-size: 1.2em;
  }
}