.page-app-download-ios-guide {
  font-family: 'Arial', sans-serif;
  color: #0A2239;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

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

.page-app-download-ios-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%231a3a5a" stroke-width="0.5"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.1;
  z-index: 0;
}

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

.page-app-download-ios-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-app-download-ios-guide__btn {
  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__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  margin-bottom: 30px;
}

.page-app-download-ios-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-app-download-ios-guide__hero-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-app-download-ios-guide__section--advantages {
  background-color: #f0f2f5;
}

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

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

.page-app-download-ios-guide__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-app-download-ios-guide__advantage-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-app-download-ios-guide__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-app-download-ios-guide__advantage-item h3 {
  font-size: 1.5em;
  color: #0A2239;
  margin-bottom: 10px;
}

.page-app-download-ios-guide__advantage-item p {
  color: #333;
}

.page-app-download-ios-guide__section--guide {
  background-color: #FFFFFF;
}

.page-app-download-ios-guide__description {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #333;
}

.page-app-download-ios-guide__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.page-app-download-ios-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

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

.page-app-download-ios-guide__step-item h3 {
  font-size: 1.8em;
  color: #0A2239;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__step-item p {
  max-width: 700px;
  color: #555;
  margin-bottom: 25px;
}

.page-app-download-ios-guide__step-item a {
  color: #0A2239;
  font-weight: bold;
  text-decoration: underline;
}

.page-app-download-ios-guide__step-item a:hover {
  color: #FFD700;
}

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

.page-app-download-ios-guide__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-app-download-ios-guide__btn--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: #1a3a5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-app-download-ios-guide__faq-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-app-download-ios-guide__faq-item h3 {
  font-size: 1.4em;
  color: #0A2239;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__faq-item p {
  color: #555;
}

.page-app-download-ios-guide__contact-support {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #333;
}

.page-app-download-ios-guide__contact-support a {
  color: #0A2239;
  font-weight: bold;
  text-decoration: underline;
}

.page-app-download-ios-guide__contact-support a:hover {
  color: #FFD700;
}

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

.page-app-download-ios-guide__features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-app-download-ios-guide__features-list li {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__features-list li:hover {
  border-color: #0A2239;
}

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

.page-app-download-ios-guide__feature-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-app-download-ios-guide__final-cta {
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  color: #0A2239;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-app-download-ios-guide__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .page-app-download-ios-guide__step-item:nth-child(odd) {
    padding-right: 30px;
  }

  .page-app-download-ios-guide__step-item:nth-child(even) {
    padding-left: 30px;
  }

  .page-app-download-ios-guide__step-item {
    flex-direction: column;
  }

  .page-app-download-ios-guide__features-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-app-download-ios-guide__main-title {
    font-size: 4em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 3em;
  }
  .page-app-download-ios-guide__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .page-app-download-ios-guide__features-list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .page-app-download-ios-guide__main-title {
    font-size: 2.5em;
  }
  .page-app-download-ios-guide__subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-app-download-ios-guide__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-app-download-ios-guide__cta-bottom .page-app-download-ios-guide__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-app-download-ios-guide__hero-image {
    max-width: 300px;
  }
}