/* style/app-download-ios-app-guide.css */
.page-app-download-ios-app-guide {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
  scroll-behavior: smooth;
}

.page-app-download-ios-app-guide__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  min-height: 500px;
}

.page-app-download-ios-app-guide__hero-content {
  max-width: 800px;
}

.page-app-download-ios-app-guide__title {
  font-size: 3.5em;
  color: #E6B325; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-app-download-ios-app-guide__subtitle {
  font-size: 1.5em;
  color: #E5E5D1;
  margin-bottom: 30px;
}

.page-app-download-ios-app-guide__hero-image-wrapper {
  max-width: 400px;
  margin-top: 40px;
}

.page-app-download-ios-app-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-app-download-ios-app-guide__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-app-download-ios-app-guide__section-title {
  font-size: 2.8em;
  color: #E6B325;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-app-guide__section-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-app-download-ios-app-guide__step-item {
  background-color: #2A2A3E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-app-download-ios-app-guide__step-icon-wrapper {
  background-color: #E6B325;
  border-radius: 50%;
  padding: 15px;
  display: inline-flex;
  margin-bottom: 20px;
}

.page-app-download-ios-app-guide__step-icon {
  width: 40px;
  height: 40px;
  filter: invert(100%); /* Make icons white */
}

.page-app-download-ios-app-guide__step-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
}

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

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

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

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

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

.page-app-download-ios-app-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(230, 179, 37, 0.7));
}

.page-app-download-ios-app-guide__feature-title {
  font-size: 1.6em;
  color: #E6B325;
  margin-bottom: 10px;
}

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

.page-app-download-ios-app-guide__faq-container {
  margin-top: 40px;
  text-align: left;
}

.page-app-download-ios-app-guide__faq-item {
  background-color: #2A2A3E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-app-guide__faq-question {
  font-size: 1.4em;
  color: #E6B325;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-app-download-ios-app-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-app-download-ios-app-guide__faq-answer {
  padding: 0 25px 20px;
  color: #CCCCCC;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-app-download-ios-app-guide__faq-answer.active {
  max-height: 300px; /* Adjust based on content */
  padding: 0 25px 20px;
}

.page-app-download-ios-app-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-app-download-ios-app-guide__section--cta {
  background: linear-gradient(90deg, #E6B325 0%, #a17d1a 100%);
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 80px;
  margin-bottom: 80px;
  color: #1A1A2E;
}

.page-app-download-ios-app-guide__cta-title {
  font-size: 2.8em;
  color: #1A1A2E;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

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

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

.page-app-download-ios-app-guide__btn--primary {
  background-color: #1A1A2E;
  color: #E6B325;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-app-download-ios-app-guide__btn--primary:hover {
  background-color: #0f0f1e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-app-download-ios-app-guide__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
  box-shadow: 0 2px 10px rgba(230, 179, 37, 0.3);
}

.page-app-download-ios-app-guide__btn--secondary:hover {
  background-color: #E6B325;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(230, 179, 37, 0.5);
}

.page-app-download-ios-app-guide__btn--text {
  background-color: transparent;
  color: #E6B325;
  padding: 5px 10px;
  font-size: 1em;
  border: none;
  text-decoration: underline;
}

.page-app-download-ios-app-guide__btn--text:hover {
  color: #ffda6a;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios-app-guide__hero {
    flex-direction: column;
    padding: 60px 20px;
  }
  .page-app-download-ios-app-guide__title {
    font-size: 2.8em;
  }
  .page-app-download-ios-app-guide__subtitle {
    font-size: 1.3em;
  }
  .page-app-download-ios-app-guide__section-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-app-guide__section-description {
    font-size: 1.1em;
  }
  .page-app-download-ios-app-guide__cta-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-app-guide__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-app-guide__hero {
    padding: 40px 15px;
  }
  .page-app-download-ios-app-guide__title {
    font-size: 2.2em;
  }
  .page-app-download-ios-app-guide__subtitle {
    font-size: 1.1em;
  }
  .page-app-download-ios-app-guide__section {
    padding: 60px 15px;
  }
  .page-app-download-ios-app-guide__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-app-guide__section-description {
    font-size: 1em;
  }
  .page-app-download-ios-app-guide__step-grid, .page-app-download-ios-app-guide__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-app-guide__cta-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-app-guide__cta-description {
    font-size: 1em;
  }
  .page-app-download-ios-app-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-app-guide__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-app-download-ios-app-guide__faq-question::after {
    right: 20px;
  }
  .page-app-download-ios-app-guide__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }
}