/* style/mobile-app-features.css */
.page-mobile-app-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, but explicitly set for clarity */
}

.page-mobile-app-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 70vh;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
  overflow: hidden;
}

.page-mobile-app-features__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-mobile-app-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-mobile-app-features__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-mobile-app-features__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-mobile-app-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-mobile-app-features__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-mobile-app-features__cta-button {
  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, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-mobile-app-features__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-mobile-app-features__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-mobile-app-features__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-mobile-app-features__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-mobile-app-features__hero-media {
  margin-top: 40px;
  width: 80%;
  max-width: 800px;
  z-index: 1;
}

.page-mobile-app-features__video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-mobile-app-features__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-mobile-app-features__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-mobile-app-features__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-mobile-app-features__benefits-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-mobile-app-features__feature-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-mobile-app-features__feature-card:hover {
  transform: translateY(-10px);
}

.page-mobile-app-features__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-mobile-app-features__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-mobile-app-features__feature-text {
  font-size: 1em;
  color: #333333;
  flex-grow: 1;
}

.page-mobile-app-features__core-features-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-mobile-app-features__content-block {
  text-align: left;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-mobile-app-features__content-subtitle {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-mobile-app-features__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-mobile-app-features__content-text {
  font-size: 1em;
  margin-bottom: 25px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-mobile-app-features__download-guide-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-mobile-app-features__step-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-mobile-app-features__step-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block;
}

.page-mobile-app-features__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-mobile-app-features__step-text {
  font-size: 1em;
  color: #333333;
  flex-grow: 1;
}

.page-mobile-app-features__download-cta {
  margin-top: 50px;
}

.page-mobile-app-features__promotions-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-mobile-app-features__card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-mobile-app-features__card:hover {
  transform: translateY(-10px);
}

.page-mobile-app-features__card-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-mobile-app-features__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-mobile-app-features__card-text {
  font-size: 1em;
  color: #333333;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-mobile-app-features__faq-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-mobile-app-features__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-mobile-app-features__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-mobile-app-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-mobile-app-features__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-mobile-app-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-mobile-app-features__faq-item.active .page-mobile-app-features__faq-toggle {
  transform: rotate(45deg);
}

.page-mobile-app-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-mobile-app-features__faq-item.active .page-mobile-app-features__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-mobile-app-features__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-mobile-app-features__cta-bottom {
  padding-bottom: 80px;
  background-color: #26A9E0;
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-mobile-app-features__hero-title {
    font-size: 2.5em;
  }
  .page-mobile-app-features__section-title {
    font-size: 2em;
  }
  .page-mobile-app-features__hero-media {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .page-mobile-app-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-mobile-app-features__hero-section {
    flex-direction: column;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-mobile-app-features__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-mobile-app-features__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-mobile-app-features__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-mobile-app-features__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-mobile-app-features__hero-media {
    width: 100%;
    margin-top: 30px;
  }

  .page-mobile-app-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-mobile-app-features__section {
    padding: 60px 0;
  }

  .page-mobile-app-features__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-mobile-app-features__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-mobile-app-features__features-grid,
  .page-mobile-app-features__content-grid,
  .page-mobile-app-features__download-steps-grid,
  .page-mobile-app-features__promotion-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-mobile-app-features__feature-card,
  .page-mobile-app-features__content-block,
  .page-mobile-app-features__step-card,
  .page-mobile-app-features__card {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-mobile-app-features__feature-icon,
  .page-mobile-app-features__content-image,
  .page-mobile-app-features__step-icon,
  .page-mobile-app-features__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-mobile-app-features__feature-title,
  .page-mobile-app-features__content-subtitle,
  .page-mobile-app-features__step-title,
  .page-mobile-app-features__card-title {
    font-size: 1.5em;
  }

  .page-mobile-app-features__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-mobile-app-features__faq-answer {
    padding: 0 15px;
  }

  .page-mobile-app-features__faq-item.active .page-mobile-app-features__faq-answer {
    padding: 15px 15px;
  }

  .page-mobile-app-features__video-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-mobile-app-features__hero-title {
    font-size: 1.8em;
  }
  .page-mobile-app-features__section-title {
    font-size: 1.6em;
  }
  .page-mobile-app-features__hero-cta-group {
    flex-direction: column;
  }
}