/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  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, #1A2B4C 0%, #3a5078 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-app-download-ios-guide__hero-image {
  max-width: 300px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(5deg);
  transition: transform 0.3s ease-in-out;
}

.page-app-download-ios-guide__hero-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.page-app-download-ios-guide__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-app-download-ios-guide__section--dark {
  background-color: #1A2B4C;
  color: #fff;
}

.page-app-download-ios-guide__section--dark .page-app-download-ios-guide__section-title {
  color: #FFD700;
}

.page-app-download-ios-guide__section--alt-bg {
  background-color: #f0f2f5;
}

.page-app-download-ios-guide__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-app-download-ios-guide__button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-app-download-ios-guide__button--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-app-download-ios-guide__button--secondary {
  background-color: #1A2B4C;
  color: #FFD700;
  margin-left: 20px;
  border: 2px solid #FFD700;
}

.page-app-download-ios-guide__button--secondary:hover {
  background-color: #2b406b;
  border-color: #e6c200;
}

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

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

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

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

.page-app-download-ios-guide__benefit-title {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__benefit-description {
  color: #555;
}

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

.page-app-download-ios-guide__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: #2b406b; /* Darker blue for steps on dark section */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-guide__section--dark .page-app-download-ios-guide__step-item {
  background-color: #2b406b;
  color: #e0e0e0;
}

.page-app-download-ios-guide__section--dark .page-app-download-ios-guide__step-item p {
  color: #c0c0c0;
}

.page-app-download-ios-guide__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 25px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFD700;
  border-radius: 50%;
}

.page-app-download-ios-guide__step-content {
  flex-grow: 1;
}

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

.page-app-download-ios-guide__step-image {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-left: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-app-download-ios-guide__step-image-small {
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  margin-left: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-app-download-ios-guide__qr-code {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 5px solid #fff;
  border-radius: 5px;
}

.page-app-download-ios-guide__note {
  font-style: italic;
  color: #e0e0e0;
  margin-top: 20px;
}

.page-app-download-ios-guide__step-list--compact .page-app-download-ios-guide__step-item {
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-app-download-ios-guide__step-list--compact .page-app-download-ios-guide__step-item p {
  color: #555;
}

.page-app-download-ios-guide__step-list--compact .page-app-download-ios-guide__step-title {
  color: #1A2B4C;
}

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

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

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #1A2B4C;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-app-download-ios-guide__faq-answer {
  color: #555;
}

.page-app-download-ios-guide__cta-section {
  background: linear-gradient(45deg, #1A2B4C, #3a5078);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

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

.page-app-download-ios-guide__accordion {
  margin-top: 30px;
}

.page-app-download-ios-guide__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-guide__accordion-header {
  background-color: #f7f7f7;
  color: #1A2B4C;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-app-download-ios-guide__accordion-header:hover {
  background-color: #e9e9e9;
}

.page-app-download-ios-guide__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
}

.page-app-download-ios-guide__accordion-header.active::after {
  content: '-';
}

.page-app-download-ios-guide__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-app-download-ios-guide__accordion-content p {
  padding-bottom: 20px;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios-guide__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-ios-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-app-download-ios-guide__section-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-app-download-ios-guide__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-app-download-ios-guide__step-image,
  .page-app-download-ios-guide__step-image-small {
    margin-left: 0;
    margin-top: 20px;
    max-width: 80%;
  }
  .page-app-download-ios-guide__cta-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-guide__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-app-download-ios-guide__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-guide__hero {
    padding: 60px 0;
  }
  .page-app-download-ios-guide__hero-title {
    font-size: 2em;
  }
  .page-app-download-ios-guide__hero-subtitle {
    font-size: 1em;
  }
  .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__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-guide__benefit-title {
    font-size: 1.3em;
  }
  .page-app-download-ios-guide__step-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-guide__faq-question {
    font-size: 1.1em;
  }
  .page-app-download-ios-guide__cta-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-guide__cta-description {
    font-size: 1em;
  }
  .page-app-download-ios-guide__hero-image {
    max-width: 250px;
  }
}

@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__button {
    width: 100%;
    margin-left: 0 !important;
  }
  .page-app-download-ios-guide__cta-buttons {
    gap: 10px;
  }
  .page-app-download-ios-guide__step-item {
    padding: 20px;
  }
  .page-app-download-ios-guide__step-number {
    font-size: 2em;
    width: 50px;
    height: 50px;
  }
  .page-app-download-ios-guide__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-app-download-ios-guide__accordion-content {
    padding: 0 20px;
  }
}