.page-app-download-ios-installation-tutorial {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-app-download-ios-installation-tutorial .hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-installation-tutorial .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-ios-installation-tutorial .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-app-download-ios-installation-tutorial .hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-ios-installation-tutorial .section-title {
  font-size: 2.5em;
  color: #2C3E50;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
}

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

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

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

.page-app-download-ios-installation-tutorial .btn-primary {
  background-color: #FFD700;
  color: #2C3E50;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-app-download-ios-installation-tutorial .btn-secondary {
  background-color: #2C3E50;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

.page-app-download-ios-installation-tutorial .btn-secondary:hover {
  background-color: #1a2a3a;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.6);
}

.page-app-download-ios-installation-tutorial .download-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.page-app-download-ios-installation-tutorial .qr-code-box, .page-app-download-ios-installation-tutorial .direct-download-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.page-app-download-ios-installation-tutorial .qr-code-image {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
}

.page-app-download-ios-installation-tutorial .qr-code-box p, .page-app-download-ios-installation-tutorial .direct-download-box p {
  font-size: 1.1em;
  color: #555;
  margin-top: 15px;
}

.page-app-download-ios-installation-tutorial .warning-text {
  color: #e74c3c;
  font-weight: bold;
  margin-top: 20px;
}

.page-app-download-ios-installation-tutorial .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-app-download-ios-installation-tutorial .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-app-download-ios-installation-tutorial .step-item:hover {
  transform: translateY(-5px);
}

.page-app-download-ios-installation-tutorial .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #2C3E50;
  font-size: 2.5em;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  z-index: 1;
}

.page-app-download-ios-installation-tutorial .step-item h3 {
  color: #2C3E50;
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-app-download-ios-installation-tutorial .step-item p {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

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

.page-app-download-ios-installation-tutorial .faq-items {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-app-download-ios-installation-tutorial .faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-installation-tutorial .faq-item h3 {
  color: #2C3E50;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-app-download-ios-installation-tutorial .faq-item p {
  color: #666;
  font-size: 1em;
}

.page-app-download-ios-installation-tutorial .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-app-download-ios-installation-tutorial .benefit-item {
  background-color: #2C3E50;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-ios-installation-tutorial .benefit-item:hover {
  transform: translateY(-7px);
  background-color: #3b506b;
}

.page-app-download-ios-installation-tutorial .benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Glowing effect for icons */
}

.page-app-download-ios-installation-tutorial .benefit-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-app-download-ios-installation-tutorial .benefit-item p {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-app-download-ios-installation-tutorial .cta-section {
  background-color: #FFD700;
  color: #2C3E50;
  text-align: center;
  padding: 60px 0;
  margin-top: 60px;
}

.page-app-download-ios-installation-tutorial .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #2C3E50;
}

.page-app-download-ios-installation-tutorial .cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.page-app-download-ios-installation-tutorial .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-app-download-ios-installation-tutorial .cta-buttons .btn-primary {
  background-color: #2C3E50;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

.page-app-download-ios-installation-tutorial .cta-buttons .btn-primary:hover {
  background-color: #1a2a3a;
  color: #fff;
}

.page-app-download-ios-installation-tutorial .cta-buttons .btn-secondary {
  background-color: #fff;
  color: #2C3E50;
  border: 2px solid #2C3E50;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-installation-tutorial .cta-buttons .btn-secondary:hover {
  background-color: #eee;
  border-color: #FFD700;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios-installation-tutorial .hero-title {
    font-size: 2.8em;
  }
  .page-app-download-ios-installation-tutorial .section-title {
    font-size: 2em;
  }
  .page-app-download-ios-installation-tutorial .cta-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-installation-tutorial .hero-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-installation-tutorial .hero-section {
    padding: 60px 0;
  }
  .page-app-download-ios-installation-tutorial .hero-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-installation-tutorial .hero-description {
    font-size: 1.1em;
  }
  .page-app-download-ios-installation-tutorial .section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-installation-tutorial .section-description {
    font-size: 1em;
  }
  .page-app-download-ios-installation-tutorial .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-installation-tutorial .download-options {
    flex-direction: column;
    gap: 30px;
  }
  .page-app-download-ios-installation-tutorial .guide-steps {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-installation-tutorial .step-item h3 {
    font-size: 1.5em;
  }
  .page-app-download-ios-installation-tutorial .benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-installation-tutorial .cta-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-installation-tutorial .cta-description {
    font-size: 1em;
  }
  .page-app-download-ios-installation-tutorial .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-installation-tutorial .hero-section {
    padding: 40px 0;
  }
  .page-app-download-ios-installation-tutorial .hero-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-installation-tutorial .hero-description {
    font-size: 0.95em;
  }
  .page-app-download-ios-installation-tutorial .qr-code-image {
    width: 150px;
    height: 150px;
  }
  .page-app-download-ios-installation-tutorial .step-number {
    width: 60px;
    height: 60px;
    font-size: 2em;
    top: -10px;
    left: -10px;
  }
  .page-app-download-ios-installation-tutorial .step-item h3 {
    font-size: 1.3em;
  }
  .page-app-download-ios-installation-tutorial .benefit-icon {
    width: 60px;
    height: 60px;
  }
  .page-app-download-ios-installation-tutorial .benefit-item h3 {
    font-size: 1.4em;
  }
  .page-app-download-ios-installation-tutorial .cta-title {
    font-size: 1.6em;
  }
}