/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Dark blue primary background */
}

.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, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero title/subtitle */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-app-download-ios-guide__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for H1 */
  line-height: 1.2;
}

.page-app-download-ios-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #D4AF37; /* Slightly darker gold for subtitle */
}

.page-app-download-ios-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-app-download-ios-guide__section--why {
  background-color: #0A192F;
}

.page-app-download-ios-guide__section--steps {
  background-color: #122841; /* Slightly lighter dark blue */
}

.page-app-download-ios-guide__section--features {
  background-color: #0A192F;
}

.page-app-download-ios-guide__section--troubleshooting {
  background-color: #122841;
}

.page-app-download-ios-guide__section--platform {
  background-color: #0A192F;
}

.page-app-download-ios-guide__section--cta {
  background: linear-gradient(45deg, #FFD700, #D4AF37); /* Gold gradient */
  color: #0A192F;
  text-align: center;
}

.page-app-download-ios-guide__section--faq {
  background-color: #122841;
}

.page-app-download-ios-guide__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for H2 */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-app-download-ios-guide__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
  border-radius: 5px;
}

.page-app-download-ios-guide__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0; /* Light gray for description */
}

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

.page-app-download-ios-guide__feature-card {
  background-color: #1A2A44; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-ios-guide__feature-card:hover {
  transform: translateY(-10px);
  background-color: #243B55;
}

.page-app-download-ios-guide__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-app-download-ios-guide__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-app-download-ios-guide__cta-card {
  background-color: #243B55;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-app-download-ios-guide__cta-card p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-app-download-ios-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
}

.page-app-download-ios-guide__btn--primary:hover {
  background-color: #D4AF37; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-app-download-ios-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

.page-app-download-ios-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-app-download-ios-guide__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1A2A44;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-app-download-ios-guide__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-app-download-ios-guide__step p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

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

.page-app-download-ios-guide__list {
  list-style-type: decimal;
  text-align: left;
  margin: 20px auto;
  padding-left: 20px;
  max-width: 600px;
  color: #E0E0E0;
}

.page-app-download-ios-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-app-download-ios-guide__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-app-download-ios-guide__feature-list li {
  background-color: #1A2A44;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 4px solid #FFD700;
}

.page-app-download-ios-guide__feature-list li strong {
  color: #FFD700;
}

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

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

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-ios-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-app-download-ios-guide__faq-item.active .page-app-download-ios-guide__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-app-download-ios-guide__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-app-download-ios-guide__faq-item.active .page-app-download-ios-guide__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-app-download-ios-guide__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-app-download-ios-guide__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-app-download-ios-guide__link:hover {
  color: #D4AF37;
}

.page-app-download-ios-guide__platform-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;
}

.page-app-download-ios-guide__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-app-download-ios-guide__checklist li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-app-download-ios-guide__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 992px) {
  .page-app-download-ios-guide__title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__heading {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-app-download-ios-guide__step {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero,
  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__heading {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-app-download-ios-guide__description {
    font-size: 0.95em;
  }
  .page-app-download-ios-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0;
  }
  .page-app-download-ios-guide__btn--secondary {
    margin-top: 15px;
    margin-left: 0;
  }
  .page-app-download-ios-guide__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.4em;
  }
  .page-app-download-ios-guide__list {
    padding-left: 15px;
  }
  .page-app-download-ios-guide__feature-list {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.1em;
  }
  .page-app-download-ios-guide__faq-answer {
    font-size: 0.95em;
  }
  .page-app-download-ios-guide__checklist li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-guide__title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__heading {
    font-size: 1.4em;
  }
  .page-app-download-ios-guide__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-app-download-ios-guide__btn--secondary {
    margin-top: 0;
  }
  .page-app-download-ios-guide__cta-buttons {
    gap: 10px;
  }
  .page-app-download-ios-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}