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

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

.page-app-download-ios-guide__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-app-download-ios-guide__container--reverse {
  flex-direction: row-reverse;
}

.page-app-download-ios-guide__hero {
  background: linear-gradient(135deg, #1A237E 0%, #39439f 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-ios-guide__hero > .page-app-download-ios-guide__container {
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFB300; /* Amber gold for emphasis */
  font-weight: 700;
  line-height: 1.2;
}

.page-app-download-ios-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

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

.page-app-download-ios-guide__button--primary {
  background-color: #FFB300; /* Amber gold */
  color: #1A237E; /* Dark blue */
}

.page-app-download-ios-guide__button--primary:hover {
  background-color: #e69900;
  transform: translateY(-2px);
}

.page-app-download-ios-guide__button--secondary {
  background-color: #1A237E; /* Dark blue */
  color: #FFFFFF;
  border: 2px solid #FFB300;
}

.page-app-download-ios-guide__button--secondary:hover {
  background-color: #0d124b;
  border-color: #e69900;
  transform: translateY(-2px);
}

.page-app-download-ios-guide__button--center {
  margin: 20px auto;
  display: block;
  width: fit-content;
}

.page-app-download-ios-guide__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-app-download-ios-guide__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-app-download-ios-guide__section--alt-bg {
  background-color: #f2f2f2;
}

.page-app-download-ios-guide__heading {
  font-size: 2.5em;
  color: #1A237E; /* Dark blue */
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.page-app-download-ios-guide__heading--center {
  text-align: center;
}

.page-app-download-ios-guide__sub-heading {
  font-size: 1.8em;
  color: #1A237E; /* Dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-ios-guide__intro-text {
  font-size: 1.15em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-ios-guide__content-block {
  flex: 1;
  min-width: 300px;
}

.page-app-download-ios-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-app-download-ios-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__image--center {
  display: block;
  margin: 40px auto;
}

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

.page-app-download-ios-guide__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFB300;
}

.page-app-download-ios-guide__grid-item h3 {
  color: #1A237E;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__grid-item p {
  color: #555;
  font-size: 1.05em;
}

.page-app-download-ios-guide__step-by-step {
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-app-download-ios-guide__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #1A237E;
  position: relative;
}

.page-app-download-ios-guide__step-number {
  counter-increment: step-counter;
  background-color: #FFB300; /* Amber gold */
  color: #1A237E; /* Dark blue */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__step-title {
  font-size: 2em;
  color: #1A237E; /* Dark blue */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-app-download-ios-guide__step p, .page-app-download-ios-guide__step ol, .page-app-download-ios-guide__step li {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-app-download-ios-guide__step ol {
  margin-left: 25px;
}

.page-app-download-ios-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__faq-list {
  margin-top: 40px;
}

.page-app-download-ios-guide__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-app-download-ios-guide__faq-question {
  font-size: 1.5em;
  color: #1A237E; /* Dark blue */
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-app-download-ios-guide__faq-answer {
  color: #555;
  font-size: 1.05em;
}

.page-app-download-ios-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-app-download-ios-guide__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-app-download-ios-guide__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFB300; /* Amber gold */
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

.page-app-download-ios-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-app-download-ios-guide__promo-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  background-color: #e3f2fd; /* Light blue background for promo */
  padding: 15px 20px 15px 50px;
  border-radius: 8px;
  border-left: 5px solid #FFB300;
}

.page-app-download-ios-guide__promo-list li::before {
  content: '⭐';
  position: absolute;
  left: 15px;
  font-size: 1.3em;
  top: 50%;
  transform: translateY(-50%);
}

.page-app-download-ios-guide__cta-section {
  background: linear-gradient(90deg, #1A237E, #39439f); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-ios-guide__cta-title {
  font-size: 2.8em;
  color: #FFB300; /* Amber gold */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-app-download-ios-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios-guide__container--flex {
    flex-direction: column;
  }
  .page-app-download-ios-guide__hero {
    padding: 60px 0;
  }
  .page-app-download-ios-guide__title {
    font-size: 2.5em;
  }
  .page-app-download-ios-guide__heading {
    font-size: 2em;
    text-align: center;
  }
  .page-app-download-ios-guide__sub-heading {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__heading {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__sub-heading {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__intro-text {
    font-size: 1em;
  }
  .page-app-download-ios-guide__cta-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-guide__title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__heading {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios-guide__button {
    width: 100%;
  }
}