/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
  font-family: 'Arial', sans-serif;
  color: #0A1931; /* Dark blue text for contrast on light background */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light grey 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, #0A1931 0%, #3a4b6b 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  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('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231a2c4d" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm10 10v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm9-9v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0 0h60v60H0z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'); /* Subtle pattern */
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-ios-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title for emphasis */
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-app-download-ios-guide__button--secondary {
  background-color: #0A1931; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

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

.page-app-download-ios-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-app-download-ios-guide__section:last-of-type {
  border-bottom: none;
}

.page-app-download-ios-guide__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-app-ios-download-guide__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-app-download-ios-guide__feature-list li,
.page-app-download-ios-guide__checklist li,
.page-app-download-ios-guide__action-list li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700; /* Gold accent */
  font-size: 1.1em;
}

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

.page-app-download-ios-guide__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-app-download-ios-guide__step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-app-download-ios-guide__step-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

.page-app-download-ios-guide__note {
  font-style: italic;
  color: #555;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 3px solid #FFD700;
}

.page-app-download-ios-guide__trust-steps {
  list-style: decimal;
  margin-left: 25px;
  margin-top: 20px;
  color: #333;
}

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

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

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

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #0A1931;
  margin-bottom: 10px;
}

.page-app-download-ios-guide__faq-answer {
  color: #333;
}

.page-app-download-ios-guide__call-to-action {
  text-align: center;
  margin-top: 40px;
}

.page-app-download-ios-guide__link {
  color: #0A1931; /* Dark blue link */
  text-decoration: underline;
}

.page-app-download-ios-guide__link:hover {
  color: #FFD700; /* Gold on hover */
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-app-download-ios-guide__step-by-step {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-app-download-ios-guide__section--why-download .page-app-download-ios-guide__feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-app-download-ios-guide__step-by-step {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-app-download-ios-guide__hero-image {
    max-width: 60%;
  }
}

@media (max-width: 767px) {
  .page-app-download-ios-guide__title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-guide__feature-list li,
  .page-app-download-ios-guide__checklist li,
  .page-app-download-ios-guide__action-list li {
    padding: 15px;
  }
  .page-app-download-ios-guide__step {
    padding: 20px;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.1em;
  }
}