.page-mobile-app {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-mobile-app__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 10px; /* Small top padding to avoid direct header overlap, relying on body padding for main offset */
  overflow: hidden;
}

.page-mobile-app__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
  border-radius: 10px;
}

.page-mobile-app__hero-content {
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-mobile-app__main-title {
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 900px;
}

.page-mobile-app__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  color: #E5E5E5;
}

.page-mobile-app__hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-mobile-app__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #111111; /* Dark text for bright buttons */
  border: 1px solid #3A2A12;
}

.page-mobile-app__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-mobile-app__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-mobile-app__button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 1px solid #F2C14E;
}

.page-mobile-app__button--secondary:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-mobile-app__section-title {
  color: #F2C14E;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2.2em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-mobile-app__section-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #E5E5E5;
  font-size: 1.05em;
}

.page-mobile-app__features-section,
.page-mobile-app__download-guide-section,
.page-mobile-app__security-section,
.page-mobile-app__faq-section,
.page-mobile-app__cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

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

.page-mobile-app__feature-card {
  background-color: #1A1A1A;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
}

.page-mobile-app__feature-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-mobile-app__feature-title {
  color: #FFD36B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-mobile-app__feature-text {
  color: #FFF6D6;
  font-size: 0.95em;
}

.page-mobile-app__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-mobile-app__step-card {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-mobile-app__step-number {
  color: #F2C14E;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-mobile-app__step-text {
  color: #FFF6D6;
  font-size: 1em;
}

.page-mobile-app__download-cta {
  text-align: center;
  margin-top: 40px;
}

.page-mobile-app__button--download {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 10px;
}

.page-mobile-app__button--download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.page-mobile-app__security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-mobile-app__security-item {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #3A2A12;
}

.page-mobile-app__security-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px #F2C14E);
}

.page-mobile-app__security-text {
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.1em;
}

.page-mobile-app__faq-item {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
}

.page-mobile-app__faq-question {
  color: #FFD36B;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-mobile-app__faq-answer {
  color: #FFF6D6;
  font-size: 1em;
}

.page-mobile-app__cta-section {
  text-align: center;
}

.page-mobile-app__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-mobile-app__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }
  .page-mobile-app__hero-description,
  .page-mobile-app__section-description {
    font-size: 1em;
  }
  .page-mobile-app__hero-buttons,
  .page-mobile-app__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-mobile-app__button {
    width: 80%;
    max-width: 300px;
  }
  .page-mobile-app__feature-grid,
  .page-mobile-app__steps-grid,
  .page-mobile-app__security-list {
    grid-template-columns: 1fr;
  }
  .page-mobile-app__hero-image, .page-mobile-app__feature-icon, .page-mobile-app__security-icon {
    max-width: 100%;
    height: auto;
  }
  .page-mobile-app__features-section,
  .page-mobile-app__download-guide-section,
  .page-mobile-app__security-section,
  .page-mobile-app__faq-section,
  .page-mobile-app__cta-section {
    padding: 20px 15px;
  }
}

/* Ensure content area images don't display smaller than 200px */
.page-mobile-app img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-mobile-app img {
    max-width: 100%;
    height: auto;
    min-width: unset; /* Allow images to scale down on mobile, but still ensuring content images are not tiny icons */
    min-height: unset;
  }
  /* Override min-width/height for specific elements if they are naturally smaller but not icons */
  .page-mobile-app__feature-icon, .page-mobile-app__security-icon {
    width: auto;
    height: auto;
    max-width: 150px; /* Example, adjust as needed */
    max-height: 150px; /* Example, adjust as needed */
    min-width: 100px; /* Smallest acceptable for these elements, still larger than icons */
    min-height: 100px;
  }
}