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

.page-download-center-ios__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-ios__hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5A93);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-ios__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-download-center-ios__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-ios__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-download-center-ios__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.page-download-center-ios__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-download-center-ios__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-download-center-ios__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-download-center-ios__btn--secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-download-center-ios__btn--secondary:hover {
  background-color: #0A2463;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-download-center-ios__intro-section, 
.page-download-center-ios__guide-section, 
.page-download-center-ios__troubleshooting-section, 
.page-download-center-ios__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-download-center-ios__feature-item {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fefefe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-ios__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-ios__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-download-center-ios__feature-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-center-ios__feature-description {
  font-size: 0.95em;
  color: #666;
}

.page-download-center-ios__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-download-center-ios__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-download-center-ios__step-number {
  width: 50px;
  height: 50px;
  background-color: #0A2463;
  color: #FFD700;
  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 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-ios__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-ios__step-description {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-download-center-ios__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
}

.page-download-center-ios__step-item ol {
  text-align: left;
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: decimal;
}

.page-download-center-ios__step-item ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-download-center-ios__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-download-center-ios__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-download-center-ios__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-center-ios__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-download-center-ios__cta-section {
  text-align: center;
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-download-center-ios__cta-section .page-download-center-ios__section-title {
  color: #FFD700;
}

.page-download-center-ios__cta-section .page-download-center-ios__description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-download-center-ios__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-download-center-ios__contact-info a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-ios__contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-download-center-ios__hero-title {
    font-size: 2.2em;
  }

  .page-download-center-ios__hero-subtitle {
    font-size: 1em;
  }

  .page-download-center-ios__section-title {
    font-size: 1.8em;
  }

  .page-download-center-ios__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-ios__features-grid {
    grid-template-columns: 1fr;
  }

  .page-download-center-ios__step-title {
    font-size: 1.5em;
  }

  .page-download-center-ios__step-description, 
  .page-download-center-ios__feature-description, 
  .page-download-center-ios__faq-answer, 
  .page-download-center-ios__faq-question {
    font-size: 0.9em;
  }
  
  .page-download-center-ios__step-item ol li {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-download-center-ios__hero-section {
    padding: 60px 0;
  }
  .page-download-center-ios__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-ios__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-download-center-ios__intro-section, 
  .page-download-center-ios__guide-section, 
  .page-download-center-ios__troubleshooting-section, 
  .page-download-center-ios__cta-section {
    padding: 40px 0;
  }
}