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

.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, #0A1931 0%, #1a3a66 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-app-download-ios-guide__subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-app-download-ios-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-ios-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-app-download-ios-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-app-download-ios-guide__section:last-of-type {
  border-bottom: none;
}

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

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

.page-app-download-ios-guide__introduction p, 
.page-app-download-ios-guide__download-steps p, 
.page-app-download-ios-guide__installation-steps p, 
.page-app-download-ios-guide__app-features p, 
.page-app-download-ios-guide__troubleshooting p,
.page-app-download-ios-guide__faq p,
.page-app-download-ios-guide__final-cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-app-download-ios-guide__keyword {
  color: #FFD700;
  font-weight: bold;
}

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

.page-app-download-ios-guide__feature-item {
  background-color: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-ios-guide__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.1);
}

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

.page-app-download-ios-guide__feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

.page-app-download-ios-guide__step-list {
  list-style: none;
  padding: 0;
}

.page-app-download-ios-guide__step-list li {
  background-color: rgba(10, 25, 49, 0.7);
  border-radius: 12px;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__step-list li h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-app-download-ios-guide__step-list li p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-app-download-ios-guide__link-button:hover {
  background-color: #e6c200;
}

.page-app-download-ios-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-app-download-ios-guide__sub-step-list {
  list-style: disc;
  margin-left: 25px;
  color: #c0c0c0;
  margin-top: 15px;
}

.page-app-download-ios-guide__sub-step-list li {
  margin-bottom: 8px;
}

.page-app-download-ios-guide__sub-step-list b {
  color: #FFD700;
}

.page-app-download-ios-guide__app-features .page-app-download-ios-guide__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-app-download-ios-guide__app-features .page-app-download-ios-guide__feature-list li {
  background-color: rgba(255, 215, 0, 0.03);
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-app-download-ios-guide__app-features .page-app-download-ios-guide__feature-list li b {
  color: #FFD700;
}

.page-app-download-ios-guide__cta-button--large {
  font-size: 1.5em;
  padding: 18px 35px;
  margin-top: 30px;
}

.page-app-download-ios-guide__faq-item {
  background-color: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

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

.page-app-download-ios-guide__faq-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-app-download-ios-guide__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-app-download-ios-guide__cta-button--final {
  margin-top: 40px;
}

.page-app-download-ios-guide__small-text {
  font-size: 0.9em;
  color: #a0a0a0;
  margin-top: 20px;
}

.page-app-download-ios-guide__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-app-download-ios-guide__contact-link:hover {
  text-decoration: underline;
}

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

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

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

  .page-app-download-ios-guide__step-list li h3 {
    font-size: 1.5em;
  }

  .page-app-download-ios-guide__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-app-download-ios-guide__cta-button--large {
    font-size: 1.3em;
    padding: 15px 30px;
  }

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

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

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

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

  .page-app-download-ios-guide__step-list li h3 {
    font-size: 1.3em;
  }

  .page-app-download-ios-guide__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-app-download-ios-guide__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }

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

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