/* style/app-download-ios-install.css */
.page-app-download-ios-install {
  font-family: Arial, sans-serif;
  color: #e5dfd3; /* Light text color for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-app-download-ios-install__hero {
  background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-install__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-app-download-ios-install__hero > * {
  position: relative;
  z-index: 2;
}

.page-app-download-ios-install__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-app-download-ios-install__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-app-download-ios-install__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: 2px solid transparent;
}

.page-app-download-ios-install__btn--primary {
  background-color: #E53E3E;
  color: #FFFFFF;
  border-color: #E53E3E;
}

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

.page-app-download-ios-install__btn--secondary {
  background-color: transparent;
  color: #E53E3E;
  border-color: #E53E3E;
}

.page-app-download-ios-install__btn--secondary:hover {
  background-color: #E53E3E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-app-download-ios-install__btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  margin-left: 20px;
}

.page-app-download-ios-install__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #E53E3E;
  border-color: #E53E3E;
  transform: translateY(-2px);
}

.page-app-download-ios-install__cta-text {
  margin-top: 20px;
  font-size: 1.2em;
  color: #f0f0f0;
}

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

.page-app-download-ios-install__section-title {
  font-size: 2.5em;
  color: #E53E3E;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-app-download-ios-install__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #e5dfd3;
}

.page-app-download-ios-install__section--intro {
  background-color: #2D3748;
}

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

.page-app-download-ios-install__feature-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-app-download-ios-install__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E53E3E);
}

.page-app-download-ios-install__feature-item h3 {
  font-size: 1.6em;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-app-download-ios-install__feature-item p {
  color: #e5dfd3;
}

.page-app-download-ios-install__section--steps {
  background-color: #1A202C;
}

.page-app-download-ios-install__step-card {
  background-color: #2D3748;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-install__step-card h3 {
  font-size: 2em;
  color: #E53E3E;
  margin-bottom: 20px;
  text-align: center;
}

.page-app-download-ios-install__step-card p,
.page-app-download-ios-install__step-card li {
  font-size: 1.1em;
  color: #e5dfd3;
  margin-bottom: 15px;
}

.page-app-download-ios-install__step-card ul,
.page-app-download-ios-install__step-card ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-app-download-ios-install__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #E53E3E;
}

.page-app-download-ios-install__section--tips {
  background-color: #2D3748;
}

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

.page-app-download-ios-install__tip-item {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-install__tip-item h4 {
  font-size: 1.4em;
  color: #E53E3E;
  margin-bottom: 10px;
}

.page-app-download-ios-install__tip-item p {
  color: #e5dfd3;
}

.page-app-download-ios-install__section--faq {
  background-color: #1A202C;
}

.page-app-download-ios-install__faq-item {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-install__faq-item h3 {
  font-size: 1.5em;
  color: #E53E3E;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}

.page-app-download-ios-install__faq-item p {
  color: #e5dfd3;
  display: block; /* Always show for simplicity in static HTML */
}

.page-app-download-ios-install__section--cta {
  background-color: #2D3748;
  text-align: center;
}

.page-app-download-ios-install__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-app-download-ios-install__title {
    font-size: 2.5em;
  }

  .page-app-download-ios-install__subtitle {
    font-size: 1.2em;
  }

  .page-app-download-ios-install__section-title {
    font-size: 2em;
  }

  .page-app-download-ios-install__features {
    grid-template-columns: 1fr;
  }

  .page-app-download-ios-install__step-card {
    padding: 30px 20px;
  }

  .page-app-download-ios-install__step-card h3 {
    font-size: 1.8em;
  }

  .page-app-download-ios-install__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-app-download-ios-install__btn--outline {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-install__title {
    font-size: 2em;
  }

  .page-app-download-ios-install__subtitle {
    font-size: 1em;
  }

  .page-app-download-ios-install__hero {
    padding: 80px 0;
  }

  .page-app-download-ios-install__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-app-download-ios-install__section-title {
    font-size: 1.8em;
  }

  .page-app-download-ios-install__step-card h3 {
    font-size: 1.5em;
  }
}