.page-aceph-mobile-app {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-aceph-mobile-app__hero-section {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.9), rgba(26, 26, 26, 0.9)), url('[GALLERY:bg:1920x1080:gold,black,luxury,pattern,abstract]') no-repeat center center/cover;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-aceph-mobile-app__hero-content {
  max-width: 900px;
}

.page-aceph-mobile-app__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-aceph-mobile-app__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-aceph-mobile-app__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-aceph-mobile-app__btn {
  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, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-aceph-mobile-app__btn--primary {
  background-color: #DAA520;
  color: #1A1A1A;
}

.page-aceph-mobile-app__btn--primary:hover {
  background-color: #e5c063;
  transform: translateY(-2px);
}

.page-aceph-mobile-app__btn--secondary {
  background-color: #1A1A1A;
  color: #DAA520;
  border: 2px solid #DAA520;
}

.page-aceph-mobile-app__btn--secondary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-aceph-mobile-app__hero-image-container {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-aceph-mobile-app__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-aceph-mobile-app__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-aceph-mobile-app__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-aceph-mobile-app__features-section,
.page-aceph-mobile-app__download-guide-section,
.page-aceph-mobile-app__compatibility-section,
.page-aceph-mobile-app__why-choose-section,
.page-aceph-mobile-app__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-aceph-mobile-app__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #DAA520;
}

.page-aceph-mobile-app__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-aceph-mobile-app__feature-icon {
  width: 100%; /* Ensure images take full width of card */
  max-width: 250px; /* Example max-width, ensure it's >= 200px */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-aceph-mobile-app__feature-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-aceph-mobile-app__feature-text {
  font-size: 1em;
  color: #555555;
}

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

.page-aceph-mobile-app__guide-step {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #DAA520;
}

.page-aceph-mobile-app__guide-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-aceph-mobile-app__guide-image {
  width: 100%;
  max-width: 300px; /* Example max-width, ensure it's >= 200px */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-aceph-mobile-app__guide-title {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-aceph-mobile-app__guide-text {
  font-size: 1em;
  color: #555555;
}

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

.page-aceph-mobile-app__compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-aceph-mobile-app__compatibility-item {
  background-color: #1A1A1A;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #DAA520;
}

.page-aceph-mobile-app__compatibility-title {
  font-size: 1.5em;
  color: #DAA520;
  margin-bottom: 15px;
}

.page-aceph-mobile-app__compatibility-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-aceph-mobile-app__why-choose-section {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 60px 20px;
}

.page-aceph-mobile-app__why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-aceph-mobile-app__why-choose-text-block {
  max-width: 700px;
  text-align: left;
}

.page-aceph-mobile-app__why-choose-paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-aceph-mobile-app__why-choose-image-container {
  width: 100%;
  max-width: 600px;
}

.page-aceph-mobile-app__why-choose-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-aceph-mobile-app__cta-section {
  background-color: #DAA520;
  color: #1A1A1A;
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-aceph-mobile-app__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.page-aceph-mobile-app__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-aceph-mobile-app__hero-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 100px 40px;
  }

  .page-aceph-mobile-app__hero-content {
    text-align: left;
    flex: 1;
    padding-right: 40px;
  }

  .page-aceph-mobile-app__hero-image-container {
    flex: 1;
    margin-top: 0;
  }

  .page-aceph-mobile-app__hero-cta {
    justify-content: flex-start;
  }

  .page-aceph-mobile-app__why-choose-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .page-aceph-mobile-app__why-choose-text-block {
    flex: 1;
    padding-right: 40px;
  }

  .page-aceph-mobile-app__why-choose-image-container {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-aceph-mobile-app__hero-title {
    font-size: 2.2em;
  }

  .page-aceph-mobile-app__hero-description,
  .page-aceph-mobile-app__section-description {
    font-size: 1em;
  }

  .page-aceph-mobile-app__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-aceph-mobile-app__section-title {
    font-size: 2em;
  }

  .page-aceph-mobile-app__features-grid,
  .page-aceph-mobile-app__guide-grid,
  .page-aceph-mobile-app__compatibility-grid {
    grid-template-columns: 1fr;
  }

  .page-aceph-mobile-app__hero-section,
  .page-aceph-mobile-app__features-section,
  .page-aceph-mobile-app__download-guide-section,
  .page-aceph-mobile-app__compatibility-section,
  .page-aceph-mobile-app__why-choose-section,
  .page-aceph-mobile-app__cta-section {
    padding: 40px 15px;
  }

  /* Mobile content area images must not cause horizontal scroll */
  .page-aceph-mobile-app img {
    max-width: 100%;
    height: auto;
  }

  .page-aceph-mobile-app {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-aceph-mobile-app__hero-cta {
    flex-direction: column;
  }

  .page-aceph-mobile-app__hero-title {
    font-size: 1.8em;
  }

  .page-aceph-mobile-app__cta-title {
    font-size: 2em;
  }
}