/* style/app-download-ios.css */
.page-app-download-ios {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0A2463; /* Main dark blue background */
}

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

.page-app-download-ios__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-app-download-ios__hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
  text-align: left;
}

.page-app-download-ios__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-app-download-ios__hero-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-app-download-ios__download-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

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

.page-app-download-ios__button i {
  margin-right: 10px;
}

.page-app-download-ios__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-app-download-ios__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-app-download-ios__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-app-download-ios__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-app-download-ios__section {
  padding: 60px 0;
  text-align: center;
}

.page-app-download-ios__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-ios__section-subtitle {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-ios-app-download .highlight {
  color: #FFD700;
}

.page-app-download-ios__qr-section {
  background-color: #081D4A;
}

.page-app-download-ios__qr-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-app-download-ios__qr-code-wrapper {
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-app-download-ios__qr-code {
  width: 200px;
  height: 200px;
  display: block;
}

.page-app-download-ios__qr-label {
  color: #0A2463;
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.1em;
}

.page-app-download-ios__qr-steps {
  text-align: left;
  max-width: 450px;
}

.page-app-download-ios__qr-steps h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-app-download-ios__qr-steps ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #C0C0C0;
}

.page-app-download-ios__qr-steps ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-app-download-ios__button--download-link {
  background-color: #FFD700;
  color: #0A2463;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}

.page-app-download-ios__button--download-link:hover {
  background-color: #E6C200;
}

.page-app-download-ios__installation-guide {
  background-color: #0A2463;
}

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

.page-app-download-ios__step-card {
  background-color: #081D4A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-app-download-ios__step-card:hover {
  transform: translateY(-5px);
}

.page-app-download-ios__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-ios__step-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-app-download-ios__step-card p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-app-download-ios__step-card p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-app-download-ios__step-card p a:hover {
  text-decoration: underline;
}

.page-app-download-ios__features-section {
  background-color: #081D4A;
}

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

.page-app-download-ios__feature-card {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-ios__feature-card:hover {
  transform: translateY(-5px);
  background-color: #1A3E8A;
}

.page-app-download-ios__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-ios__feature-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-app-download-ios__feature-card p {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-app-download-ios__faq-section {
  background-color: #0A2463;
}

.page-app-download-ios__faq-item {
  background-color: #081D4A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for an eventual toggle icon */
}

.page-app-download-ios__faq-item p {
  color: #C0C0C0;
  font-size: 1em;
  /* display: none; /* Initially hidden, can be toggled by JS */
}

.page-app-download-ios__faq-item p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-app-download-ios__faq-item p a:hover {
  text-decoration: underline;
}

.page-app-download-ios__cta-section {
  background: linear-gradient(45deg, #0A2463 0%, #000000 100%); /* Dark gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-app-download-ios__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-ios__cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-ios__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.page-app-download-ios__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Basic icon styles (replace with actual font icons or SVG if available) */
.icon-apple::before {
  content: ''; /* Placeholder for Apple icon */
  font-family: sans-serif; /* Or specific icon font */
}
.icon-register::before {
  content: '✎'; /* Placeholder for Register icon */
  font-family: sans-serif;
}
.icon-download::before {
  content: '⬇'; /* Placeholder for Download icon */
  font-family: sans-serif;
}
.icon-login::before {
  content: '→'; /* Placeholder for Login icon */
  font-family: sans-serif;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-ios__hero-section .page-app-download-ios__container {
    flex-direction: column;
  }
  .page-app-download-ios__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-app-download-ios__download-buttons {
    justify-content: center;
  }
  .page-app-download-ios__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-ios__qr-content {
    flex-direction: column;
  }
  .page-app-download-ios__qr-steps {
    text-align: center;
  }
  .page-app-download-ios__qr-steps ol {
    text-align: left;
    margin: 0 auto 30px;
    max-width: 350px;
  }
  .page-app-download-ios__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios__button--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios__hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  .page-app-download-ios__hero-title {
    font-size: 2em;
  }
  .page-app-download-ios__hero-description {
    font-size: 1em;
  }
  .page-app-download-ios__download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-ios__button {
    width: 90%;
    margin: 0 auto;
  }
  .page-app-download-ios__section-title {
    font-size: 2em;
  }
  .page-app-download-ios__section-subtitle {
    font-size: 0.95em;
  }
  .page-app-download-ios__cta-title {
    font-size: 2.2em;
  }
  .page-app-download-ios__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-ios__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios__cta-title {
    font-size: 1.8em;
  }
  .page-app-download-ios__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-app-download-ios__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}