/* style/download-center-app-installation-guide-ios.css */
.page-download-center-app-installation-guide-ios {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-download-center-app-installation-guide-ios .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Text colors for contrast */
.page-download-center-app-installation-guide-ios h1, 
.page-download-center-app-installation-guide-ios h2, 
.page-download-center-app-installation-guide-ios h3 {
  color: #0A2463; /* Deep Blue - Primary color */
}

.page-download-center-app-installation-guide-ios p, 
.page-download-center-app-installation-guide-ios li {
  color: #444;
}

.page-download-center-app-installation-guide-ios .highlight-text {
  color: #F3C700; /* Bright Gold - Secondary color for emphasis */
  font-weight: bold;
}

.page-download-center-app-installation-guide-ios .hero-section {
  background-color: #0A2463;
  background-image: linear-gradient(135deg, #0A2463 0%, #1A3A7F 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-app-installation-guide-ios .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F3C700; /* Bright Gold for title */
}

.page-download-center-app-installation-guide-ios .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-download-center-app-installation-guide-ios .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-download-center-app-installation-guide-ios .btn-primary {
  background-color: #F3C700; /* Bright Gold */
  color: #0A2463; /* Deep Blue */
  border: 2px solid #F3C700;
}

.page-download-center-app-installation-guide-ios .btn-primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-download-center-app-installation-guide-ios .btn-secondary {
  background-color: transparent;
  color: #0A2463; /* Deep Blue */
  border: 2px solid #0A2463;
}

.page-download-center-app-installation-guide-ios .btn-secondary:hover {
  background-color: #0A2463;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-download-center-app-installation-guide-ios .btn-text {
  background-color: transparent;
  color: #0A2463;
  border: none;
  padding: 8px 15px;
  font-size: 1em;
}

.page-download-center-app-installation-guide-ios .btn-text:hover {
  text-decoration: underline;
}

.page-download-center-app-installation-guide-ios .inline-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-download-center-app-installation-guide-ios .inline-link:hover {
  color: #F3C700;
}

.page-download-center-app-installation-guide-ios .introduction-section, 
.page-download-center-app-installation-guide-ios .installation-guide-section, 
.page-download-center-app-installation-guide-ios .troubleshooting-section, 
.page-download-center-app-installation-guide-ios .benefits-section, 
.page-download-center-app-installation-guide-ios .cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-download-center-app-installation-guide-ios .section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-download-center-app-installation-guide-ios .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F3C700;
  border-radius: 2px;
}

.page-download-center-app-installation-guide-ios .section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-download-center-app-installation-guide-ios .feature-item {
  text-align: center;
  padding: 25px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}

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

.page-download-center-app-installation-guide-ios .feature-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #0A2463;
}

.page-download-center-app-installation-guide-ios .guide-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
  position: relative;
}

.page-download-center-app-installation-guide-ios .guide-step:last-child {
  margin-bottom: 0;
}

.page-download-center-app-installation-guide-ios .step-number {
  min-width: 50px;
  height: 50px;
  background-color: #F3C700; /* Bright Gold */
  color: #0A2463; /* Deep Blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.page-download-center-app-installation-guide-ios .step-content h3 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-download-center-app-installation-guide-ios .step-content p {
  margin-bottom: 15px;
}

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

.page-download-center-app-installation-guide-ios ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-download-center-app-installation-guide-ios ol li {
  margin-bottom: 10px;
}

.page-download-center-app-installation-guide-ios .troubleshooting-section {
  background-color: #fdfdfd;
}

.page-download-center-app-installation-guide-ios .faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-left: 5px solid #0A2463;
}

.page-download-center-app-installation-guide-ios .faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-download-center-app-installation-guide-ios .faq-answer p {
  margin-bottom: 10px;
}

.page-download-center-app-installation-guide-ios .benefits-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-download-center-app-installation-guide-ios .benefits-section ul li {
  background-color: #e8f0f8;
  border-left: 4px solid #F3C700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-download-center-app-installation-guide-ios .benefits-section ul li strong {
  color: #0A2463;
  margin-right: 8px;
}

.page-download-center-app-installation-guide-ios .cta-section {
  text-align: center;
  background-color: #0A2463;
  background-image: linear-gradient(135deg, #0A2463 0%, #1A3A7F 100%);
  color: #ffffff;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-download-center-app-installation-guide-ios .cta-title {
  font-size: 2.8em;
  color: #F3C700;
  margin-bottom: 20px;
}

.page-download-center-app-installation-guide-ios .cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-download-center-app-installation-guide-ios .cta-section .btn {
  margin: 0 10px;
}

.page-download-center-app-installation-guide-ios .btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-app-installation-guide-ios .hero-title {
    font-size: 2.5em;
  }
  .page-download-center-app-installation-guide-ios .section-title {
    font-size: 2em;
  }
  .page-download-center-app-installation-guide-ios .guide-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-download-center-app-installation-guide-ios .step-number {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-installation-guide-ios .hero-title {
    font-size: 2em;
  }
  .page-download-center-app-installation-guide-ios .hero-subtitle {
    font-size: 1.2em;
  }
  .page-download-center-app-installation-guide-ios .section-title {
    font-size: 1.8em;
  }
  .page-download-center-app-installation-guide-ios .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-download-center-app-installation-guide-ios .guide-step {
    gap: 15px;
  }
  .page-download-center-app-installation-guide-ios .step-content h3 {
    font-size: 1.5em;
  }
  .page-download-center-app-installation-guide-ios .cta-title {
    font-size: 2em;
  }
  .page-download-center-app-installation-guide-ios .cta-description {
    font-size: 1.1em;
  }
  .page-download-center-app-installation-guide-ios .cta-section .btn {
    display: block;
    margin: 15px auto;
  }
}