.page-app-download-ios-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light backgrounds */
  background-color: #f8f8f8;
}

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

.page-app-download-ios-guide__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #FFFFFF; /* White text for dark gradient background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for title on dark background */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for subtitle on dark background */
}

.page-app-download-ios-guide__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-app-download-ios-guide__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-app-download-ios-guide__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-app-download-ios-guide__button--primary:hover {
  background-color: #e6c200;
  border-color: #6a0000;
}

.page-app-download-ios-guide__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-app-download-ios-guide__hero-image-wrapper {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-ios-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__section--intro {
  background-color: #fcfcfc;
}

.page-app-download-ios-guide__section--highlight {
  background-color: #fff8e1; /* Light gold background */
}

.page-app-download-ios-guide__section--troubleshoot {
  background-color: #ffebee; /* Light red background */
}

.page-app-download-ios-guide__section--cta {
  background-color: #8B0000; /* Dark red background */
  color: #FFFFFF; /* White text */
  text-align: center;
  padding: 80px 0;
}

.page-app-download-ios-guide__section--cta .page-app-download-ios-guide__heading,
.page-app-download-ios-guide__section--cta .page-app-download-ios-guide__text {
  color: #FFFFFF;
}

.page-app-download-ios-guide__heading {
  font-size: 2.2em;
  color: #8B0000; /* Dark red heading */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-app-download-ios-guide__section--cta .page-app-download-ios-guide__heading {
  color: #FFD700; /* Gold heading on dark red background */
}

.page-app-download-ios-guide__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-app-download-ios-guide__benefits-list,
.page-app-download-ios-guide__steps-list,
.page-app-download-ios-guide__troubleshoot-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-app-download-ios-guide__benefits-list li,
.page-app-download-ios-guide__steps-list li,
.page-app-download-ios-guide__troubleshoot-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  position: relative;
  padding-left: 30px;
}

.page-app-download-ios-guide__icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700; /* Gold icon */
  font-size: 1.3em;
}

.page-app-download-ios-guide__icon--check::before {
  content: '✓';
}

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

.page-app-download-ios-guide__step-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-app-download-ios-guide__step-item:hover {
  transform: translateY(-5px);
}

.page-app-download-ios-guide__step-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark red step title */
  margin-bottom: 15px;
}

.page-app-download-ios-guide__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

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

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

.page-app-download-ios-guide__troubleshoot-list li strong {
  color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-app-download-ios-guide__title {
    font-size: 2em;
  }

  .page-app-download-ios-guide__subtitle {
    font-size: 1.1em;
  }

  .page-app-download-ios-guide__heading {
    font-size: 1.8em;
  }

  .page-app-download-ios-guide__text,
  .page-app-download-ios-guide__benefits-list li,
  .page-app-download-ios-guide__steps-list li,
  .page-app-download-ios-guide__troubleshoot-list li {
    font-size: 1em;
  }

  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }

  .page-app-download-ios-guide__hero {
    padding: 60px 0;
  }

  .page-app-download-ios-guide__step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-guide__title {
    font-size: 1.6em;
  }

  .page-app-download-ios-guide__subtitle {
    font-size: 0.9em;
  }

  .page-app-download-ios-guide__heading {
    font-size: 1.5em;
  }

  .page-app-download-ios-guide__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-app-download-ios-guide__button--large {
    padding: 15px 30px;
    font-size: 1em;
  }
}