/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
  font-family: 'Arial', sans-serif;
  color: #2A2E43; /* Dark blue for main text */
  line-height: 1.6;
}

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

.page-app-download-ios-guide__container--centered {
  text-align: center;
}

.page-app-download-ios-guide__hero-section {
  background: linear-gradient(135deg, #2A2E43 0%, #4a547a 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
}

.page-app-download-ios-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-app-download-ios-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-app-download-ios-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-app-download-ios-guide__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #2A2E43; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

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

.page-app-download-ios-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43; /* Dark blue text on hover */
  transform: translateY(-2px);
}

.page-app-download-ios-guide__btn--download {
  background-color: #2A2E43; /* Dark blue background */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  padding: 12px 25px;
}

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

.page-app-download-ios-guide__btn--full-width {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

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

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

.page-app-download-ios-guide__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-app-download-ios-guide__section-title {
  font-size: 2.5em;
  color: #2A2E43; /* Dark blue title */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.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; /* Gold underline */
  border-radius: 2px;
}

.page-app-download-ios-guide__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-app-download-ios-guide__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-app-download-ios-guide__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-app-download-ios-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-app-download-ios-guide__feature-title {
  font-size: 1.5em;
  color: #2A2E43; /* Dark blue title */
  margin-bottom: 15px;
}

.page-app-download-ios-guide__feature-text {
  color: #555;
  font-size: 1em;
}

.page-app-download-ios-guide__step-by-step {
  display: grid;
  gap: 50px;
  margin-top: 50px;
}

.page-app-download-ios-guide__step-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  border-left: 5px solid #FFD700; /* Gold accent */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-app-download-ios-guide__step-number {
  position: absolute;
  top: 0px;
  left: -25px;
  background-color: #FFD700; /* Gold circle */
  color: #2A2E43; /* Dark blue number */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.page-app-download-ios-guide__step-title {
  font-size: 2em;
  color: #2A2E43; /* Dark blue title */
  margin-bottom: 15px;
  padding-left: 40px; /* Space for step number */
}

.page-app-download-ios-guide__step-text {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-app-download-ios-guide__link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-app-download-ios-guide__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-app-download-ios-guide__download-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 30px 0;
  width: 100%;
}

.page-app-download-ios-guide__qr-code-wrapper {
  text-align: center;
}

.page-app-download-ios-guide__qr-code {
  width: 180px;
  height: 180px;
  border: 5px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios-guide__qr-code-wrapper p {
  margin-top: 10px;
  font-weight: bold;
  color: #2A2E43;
}

.page-app-download-ios-guide__or-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #2A2E43;
  text-transform: uppercase;
}

.page-app-download-ios-guide__sub-steps {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-app-download-ios-guide__sub-steps li {
  background-color: #f0f2f7;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  color: #333;
  font-size: 1em;
}

.page-app-download-ios-guide__list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-app-download-ios-guide__list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2A2E43;
}

.page-app-download-ios-guide__list li p {
  margin: 0;
  color: #333;
  font-size: 1.1em;
}

.page-app-download-ios-guide__list li p strong {
  color: #2A2E43;
  font-size: 1.1em;
}

.page-app-download-ios-guide__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #2A2E43; /* Dark blue question */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-ios-guide__faq-answer {
  color: #555;
  font-size: 1em;
  display: none; /* Hidden by default */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.page-app-download-ios-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-app-download-ios-guide__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-ios-guide__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-ios-guide__hero-description {
    font-size: 1.1em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__feature-item {
    padding: 25px;
  }
  .page-app-download-ios-guide__step-item {
    padding: 30px;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero-section {
    padding: 80px 0;
  }
  .page-app-download-ios-guide__hero-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios-guide__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__step-item {
    padding: 25px;
  }
  .page-app-download-ios-guide__step-number {
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.5em;
    padding-left: 30px;
  }
  .page-app-download-ios-guide__download-options {
    flex-direction: column;
    gap: 20px;
  }
  .page-app-download-ios-guide__qr-code {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-guide__hero-section {
    padding: 60px 0;
  }
  .page-app-download-ios-guide__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__hero-description {
    font-size: 1em;
  }
  .page-app-download-ios-guide__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__section-subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-guide__step-item {
    padding: 20px;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__step-text {
    font-size: 0.95em;
  }
  .page-app-download-ios-guide__feature-item {
    padding: 20px;
  }
  .page-app-download-ios-guide__feature-title {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.1em;
  }
  .page-app-download-ios-guide__faq-answer {
    font-size: 0.95em;
  }
}