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

.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, #0A2463 0%, #2a4a8d 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-app-download-ios-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-app-download-ios-guide__hero-description a {
  color: #E3B505;
  text-decoration: underline;
  font-weight: bold;
}

.page-app-download-ios-guide__hero-actions {
  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;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-app-download-ios-guide__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border-color: #E3B505;
}

.page-app-download-ios-guide__btn--primary:hover {
  background-color: #f0c20d;
  border-color: #f0c20d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-app-download-ios-guide__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-app-download-ios-guide__benefits p a {
  color: #0A2463;
  font-weight: bold;
}

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

.page-app-download-ios-guide__benefit-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-app-download-ios-guide__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-app-download-ios-guide__benefit-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-ios-guide__benefit-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  text-align: center;
}

.page-app-download-ios-guide__benefit-item p a {
  color: #0A2463;
  font-weight: bold;
}

.page-app-download-ios-guide__guide-steps p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-app-download-ios-guide__guide-steps p a {
  color: #0A2463;
  font-weight: bold;
}

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

.page-app-download-ios-guide__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-app-download-ios-guide__step-item:last-child {
  margin-bottom: 0;
}

.page-app-download-ios-guide__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-ios-guide__step-item p {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: center;
}

.page-app-download-ios-guide__step-item p a {
  color: #E3B505;
  font-weight: bold;
}

.page-app-download-ios-guide__link--bold {
  font-weight: bold;
  color: #E3B505;
  text-decoration: none;
}

.page-app-download-ios-guide__link--bold:hover {
  text-decoration: underline;
}

.page-app-download-ios-guide__step-item ul {
  list-style-type: disc;
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  padding-left: 20px;
  color: #555;
}

.page-app-download-ios-guide__step-item ul li {
  margin-bottom: 10px;
  font-size: 1em;
}

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

.page-app-download-ios-guide__cta-block {
  text-align: center;
  margin-top: 50px;
  background-color: #0A2463;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios-guide__cta-text {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
}

.page-app-download-ios-guide__cta-text a {
  color: #E3B505;
  font-weight: bold;
  text-decoration: underline;
}

.page-app-download-ios-guide__troubleshooting p, .page-app-download-ios-guide__faq p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-app-download-ios-guide__troubleshooting p a, .page-app-download-ios-guide__faq p a {
  color: #0A2463;
  font-weight: bold;
}

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

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-ios-guide__faq-question a {
  color: #0A2463;
  font-weight: bold;
}

.page-app-download-ios-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #E3B505;
}

.page-app-download-ios-guide__faq-question.active::after {
  content: '-';
}

.page-app-download-ios-guide__faq-answer {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-app-download-ios-guide__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  transition: max-height 0.5s ease-in;
}

.page-app-download-ios-guide__faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 10px;
}

.page-app-download-ios-guide__faq-answer li {
  margin-bottom: 5px;
}

.page-app-download-ios-guide__faq-answer p a {
  color: #E3B505;
  font-weight: bold;
}

.page-app-download-ios-guide__conclusion p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.page-app-download-ios-guide__conclusion p a {
  color: #0A2463;
  font-weight: bold;
}

.page-app-download-ios-guide__promotion-banner {
  background: linear-gradient(90deg, #0A2463, #E3B505);
  padding: 50px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__promotion-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,light_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-app-download-ios-guide__promotion-banner .page-app-download-ios-guide__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-app-download-ios-guide__banner-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.page-app-download-ios-guide__banner-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__banner-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-ios-guide__banner-text a {
  color: #E3B505;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios-guide__hero-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-app-download-ios-guide__step-item {
    padding: 30px;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__banner-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero {
    padding: 80px 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__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios-guide__btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-app-download-ios-guide__section {
    padding: 40px 0;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-app-download-ios-guide__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-guide__step-item {
    padding: 25px;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__cta-block {
    padding: 30px 15px;
  }
  .page-app-download-ios-guide__cta-text {
    font-size: 1.2em;
  }
  .page-app-download-ios-guide__banner-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__banner-text {
    font-size: 1em;
  }
}