/* style/app-download-guide.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-app-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

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

.page-app-download-guide__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-app-download-guide__section-intro {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-app-download-guide__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
  padding: 60px 0;
}

.page-app-download-guide__light-bg {
  background-color: #f8f9fa; /* Assuming light background for contrast */
  color: #333333;
  padding: 60px 0;
}

/* Hero Section */
.page-app-download-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-app-download-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-app-download-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-app-download-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
}

.page-app-download-guide__hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-app-download-guide__hero-description {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

/* CTA Button Styles */
.page-app-download-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-app-download-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-app-download-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-app-download-guide__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-app-download-guide__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--background-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why Download Section */
.page-app-download-guide__why-download-section {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #333333;
  background-color: #f8f9fa;
}

.page-app-download-guide__why-download-section .page-app-download-guide__section-title {
  color: var(--primary-color);
}

.page-app-download-guide__why-download-section .page-app-download-guide__section-intro {
  color: #555555;
}

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

.page-app-download-guide__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Ensure feature item has min height for content */
}

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

.page-app-download-guide__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-app-download-guide__feature-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-guide__feature-description {
  font-size: 16px;
  color: #666666;
}

.page-app-download-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Download Guide Section */
.page-app-download-guide__download-guide-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-app-download-guide__download-guide-section .page-app-download-guide__section-title {
  color: var(--gold-color);
}

.page-app-download-guide__download-guide-section .page-app-download-guide__section-intro {
  color: var(--text-secondary);
}

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

.page-app-download-guide__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--divider-color);
}

.page-app-download-guide__step-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1;
}

.page-app-download-guide__step-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-app-download-guide__step-description {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Registration Guide Section */
.page-app-download-guide__registration-guide-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
  color: #333333;
}

.page-app-download-guide__registration-guide-section .page-app-download-guide__section-title {
  color: var(--primary-color);
}

.page-app-download-guide__registration-guide-section .page-app-download-guide__section-intro {
  color: #555555;
}

.page-app-download-guide__registration-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: left;
}

.page-app-download-guide__registration-steps li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: #333333;
  border-left: 5px solid var(--primary-color);
}

.page-app-download-guide__registration-steps li strong {
  color: var(--primary-color);
}

/* Features Section */
.page-app-download-guide__features-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-app-download-guide__features-section .page-app-download-guide__section-title {
  color: var(--gold-color);
}

.page-app-download-guide__features-section .page-app-download-guide__section-intro {
  color: var(--text-secondary);
}

.page-app-download-guide__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: left;
}

.page-app-download-guide__feature-list li {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: var(--text-main);
  border-left: 5px solid var(--primary-color);
}

.page-app-download-guide__feature-list li strong {
  color: var(--gold-color);
}

/* Promotions Section */
.page-app-download-guide__promotions-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
  color: #333333;
}

.page-app-download-guide__promotions-section .page-app-download-guide__section-title {
  color: var(--primary-color);
}

.page-app-download-guide__promotions-section .page-app-download-guide__section-intro {
  color: #555555;
}

.page-app-download-guide__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: left;
}

.page-app-download-guide__promo-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: #333333;
  border-left: 5px solid var(--secondary-color);
}

.page-app-download-guide__promo-list li strong {
  color: var(--secondary-color);
}

/* FAQ Section */
.page-app-download-guide__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-app-download-guide__faq-section .page-app-download-guide__section-title {
  color: var(--gold-color);
}

.page-app-download-guide__faq-list {
  margin-top: 40px;
}

.page-app-download-guide__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-app-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  list-style: none; /* For details/summary */
}

.page-app-download-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-app-download-guide__faq-question .page-app-download-guide__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-app-download-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-app-download-guide__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: 1px solid var(--divider-color);
}

.page-app-download-guide__faq-item[open] .page-app-download-guide__faq-question {
  border-bottom: none;
}

/* Final CTA Section */
.page-app-download-guide__final-cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
  color: #333333;
  text-align: center;
}

.page-app-download-guide__final-cta-section .page-app-download-guide__section-title {
  color: var(--primary-color);
}

.page-app-download-guide__final-cta-section .page-app-download-guide__section-intro {
  color: #555555;
  margin-bottom: 40px;
}

.page-app-download-guide__cta-section {
  text-align: center;
  margin-top: 40px;
}

/* Image responsiveness and minimum size */
.page-app-download-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-app-download-guide__hero-content {
    padding: 0 15px;
  }
  .page-app-download-guide__section-title {
    font-size: clamp(24px, 5vw, 40px);
  }
  .page-app-download-guide__section-intro {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-app-download-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-app-download-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-app-download-guide__container,
  .page-app-download-guide__hero-content,
  .page-app-download-guide__features-grid,
  .page-app-download-guide__steps-grid,
  .page-app-download-guide__registration-steps,
  .page-app-download-guide__feature-list,
  .page-app-download-guide__promo-list,
  .page-app-download-guide__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-app-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-app-download-guide__feature-icon {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-app-download-guide__section-title {
    font-size: 28px;
  }
  .page-app-download-guide__section-intro {
    font-size: 15px;
  }
  .page-app-download-guide__feature-title,
  .page-app-download-guide__step-title {
    font-size: 20px;
  }
  .page-app-download-guide__feature-description,
  .page-app-download-guide__step-description,
  .page-app-download-guide__registration-steps li,
  .page-app-download-guide__feature-list li,
  .page-app-download-guide__promo-list li,
  .page-app-download-guide__faq-question,
  .page-app-download-guide__faq-answer {
    font-size: 15px;
  }
  .page-app-download-guide__faq-question {
    padding: 15px 20px;
  }
  .page-app-download-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-app-download-guide__hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }
  .page-app-download-guide__hero-description {
    font-size: clamp(16px, 4vw, 20px);
  }
  .page-app-download-guide__hero-content {
    margin-top: 20px;
  }
  .page-app-download-guide__hero-section,
  .page-app-download-guide__why-download-section,
  .page-app-download-guide__download-guide-section,
  .page-app-download-guide__registration-guide-section,
  .page-app-download-guide__features-section,
  .page-app-download-guide__promotions-section,
  .page-app-download-guide__faq-section,
  .page-app-download-guide__final-cta-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .page-app-download-guide__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }
}