/* style/app-download-ios-guide.css */

/* Variables */
:root {
  --page-app-download-ios-guide-primary-color: #007bff;
  --page-app-download-ios-guide-secondary-color: #ffc107;
  --page-app-download-ios-guide-text-dark: #1a1a1a;
  --page-app-download-ios-guide-text-light: #ffffff;
  --page-app-download-ios-guide-bg-light: #f8f9fa;
  --page-app-download-ios-guide-bg-dark: #0056b3; /* Darker variant of primary for contrast */
}

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

.page-app-download-ios-guide__hero {
  background: linear-gradient(135deg, var(--page-app-download-ios-guide-primary-color), #0056b3);
  color: var(--page-app-download-ios-guide-text-light);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--page-app-download-ios-guide-text-light);
}

.page-app-download-ios-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-app-download-ios-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

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

.page-app-download-ios-guide__btn--primary {
  background-color: var(--page-app-download-ios-guide-secondary-color);
  color: var(--page-app-download-ios-guide-text-dark);
  border: 2px solid var(--page-app-download-ios-guide-secondary-color);
}

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

.page-app-download-ios-guide__btn--secondary {
  background-color: transparent;
  color: var(--page-app-download-ios-guide-text-light);
  border: 2px solid var(--page-app-download-ios-guide-text-light);
}

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-app-download-ios-guide__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-app-download-ios-guide__hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  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-guide__section {
  padding: 60px 0;
}

.page-app-download-ios-guide__section:nth-of-type(even) {
  background-color: var(--page-app-download-ios-guide-bg-light);
}

.page-app-download-ios-guide__section-title {
  font-size: 2.5em;
  color: var(--page-app-download-ios-guide-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-app-download-ios-guide__why-download p {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--page-app-download-ios-guide-text-dark);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-app-download-ios-guide__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.page-app-download-ios-guide__feature-list li {
  background-color: var(--page-app-download-ios-guide-text-light);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: var(--page-app-download-ios-guide-text-dark);
  display: flex;
  align-items: center;
}

.page-app-download-ios-guide__feature-list li .icon-check {
  color: var(--page-app-download-ios-guide-primary-color);
  margin-right: 10px;
  font-size: 1.2em;
}

.page-app-download-ios-guide__feature-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__download-steps p {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--page-app-download-ios-guide-text-dark);
  margin-bottom: 20px;
}

.page-app-download-ios-guide__step {
  background-color: var(--page-app-download-ios-guide-text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  border-left: 5px solid var(--page-app-download-ios-guide-primary-color);
}

.page-app-download-ios-guide__step-number {
  background-color: var(--page-app-download-ios-guide-primary-color);
  color: var(--page-app-download-ios-guide-text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  position: absolute;
  left: -25px;
  top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__step-title {
  font-size: 1.8em;
  color: var(--page-app-download-ios-guide-primary-color);
  margin-bottom: 15px;
  padding-left: 40px; /* Adjust for step number */
}

.page-app-download-ios-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-guide__step ol {
  list-style-type: decimal;
  padding-left: 40px;
  margin-bottom: 20px;
}

.page-app-download-ios-guide__step ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--page-app-download-ios-guide-text-dark);
  line-height: 1.6;
}

.page-app-download-ios-guide__final-cta {
  text-align: center;
  margin-top: 40px;
}

.page-app-download-ios-guide__troubleshooting {
  background-color: var(--page-app-download-ios-guide-bg-light);
}

.page-app-download-ios-guide__faq-item {
  background-color: var(--page-app-download-ios-guide-text-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.page-app-download-ios-guide__faq-question {
  font-size: 1.4em;
  color: var(--page-app-download-ios-guide-primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-app-download-ios-guide__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--page-app-download-ios-guide-text-dark);
}

.page-app-download-ios-guide__cta-bottom {
  text-align: center;
  background: linear-gradient(45deg, var(--page-app-download-ios-guide-primary-color), var(--page-app-download-ios-guide-bg-dark));
  color: var(--page-app-download-ios-guide-text-light);
  padding: 80px 0;
}

.page-app-download-ios-guide__cta-bottom .page-app-download-ios-guide__section-title {
  color: var(--page-app-download-ios-guide-text-light);
}

.page-app-download-ios-guide__cta-bottom p {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-app-download-ios-guide__cta-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 40px auto 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__disclaimer {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-ios-guide__hero-title {
    font-size: 2.8em;
  }
  .page-app-download-ios-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__feature-list {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.6em;
    padding-left: 30px;
  }
  .page-app-download-ios-guide__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    left: -20px;
    top: 25px;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero {
    padding: 60px 0 30px;
  }
  .page-app-download-ios-guide__hero-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    max-width: 300px;
  }
  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-app-download-ios-guide__why-download p,
  .page-app-download-ios-guide__download-steps p,
  .page-app-download-ios-guide__cta-bottom p {
    font-size: 1em;
  }
  .page-app-download-ios-guide__step {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.4em;
    padding-left: 20px;
  }
  .page-app-download-ios-guide__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: -17px;
    top: 20px;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-guide__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-app-download-ios-guide__btn {
    width: 90%;
    max-width: 250px;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.2em;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.1em;
  }
}