.page-index-app-download-section {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-index-app-download-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-app-download-section__hero {
  background: linear-gradient(135deg, #0A6847 0%, #0A6847 60%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-app-download-section__hero > * {
  position: relative;
  z-index: 1;
}

.page-index-app-download-section__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);
  font-weight: bold;
}

.page-index-app-download-section__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-app-download-section__download-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-index-app-download-section__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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-app-download-section__btn--primary {
  background-color: #FFD700;
  color: #0A6847; /* Dark green for text on gold */
  border: 2px solid #FFD700;
}

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

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

.page-index-app-download-section__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-index-app-download-section__qr-codes {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.page-index-app-download-section__qr-item {
  text-align: center;
  color: #ffffff;
}

.page-index-app-download-section__qr-img {
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.page-index-app-download-section__qr-item p {
  font-size: 1em;
  color: #ffffff;
}

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

.page-index-app-download-section__section--alt-bg {
  background-color: #e8f5e9; /* Light green background for contrast */
}

.page-index-app-download-section__section-title {
  font-size: 2.5em;
  color: #0A6847; /* Dark green for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-app-download-section__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-index-app-download-section__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

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

.page-index-app-download-section__feature-item h3 {
  font-size: 1.5em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-app-download-section__feature-item p {
  color: #666;
  font-size: 0.95em;
}

.page-index-app-download-section__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}

.page-index-app-download-section__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-app-download-section__step-number {
  background-color: #FFD700;
  color: #0A6847;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-app-download-section__step-item h3 {
  font-size: 1.6em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-app-download-section__step-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-index-app-download-section__text-link {
  color: #0A6847;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-app-download-section__text-link:hover {
  color: #FFD700;
}

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

.page-index-app-download-section__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-app-download-section__promo-list li {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-left: 5px solid #0A6847;
  font-size: 1.05em;
  color: #333;
}

.page-index-app-download-section__promo-list li strong {
  color: #0A6847;
}

.page-index-app-download-section__cta-center {
  margin-top: 40px;
}

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

.page-index-app-download-section__feature-detail-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  border-top: 4px solid #FFD700;
}

.page-index-app-download-section__feature-detail-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-index-app-download-section__feature-detail-item h3 {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 10px;
}

.page-index-app-download-section__feature-detail-item p {
  color: #666;
  font-size: 0.95em;
}

.page-index-app-download-section__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-index-app-download-section__security-list li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #FFD700;
  font-size: 1.05em;
  color: #333;
}

.page-index-app-download-section__security-list li strong {
  color: #0A6847;
}

.page-index-app-download-section__security-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-app-download-section__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-app-download-section__faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.page-index-app-download-section__faq-item h3 {
  font-size: 1.25em;
  color: #0A6847;
  margin-bottom: 10px;
}

.page-index-app-download-section__faq-item p {
  color: #555;
  font-size: 1em;
}

.page-index-app-download-section__final-cta {
  background-color: #0A6847;
  color: #ffffff;
  padding: 80px 0;
}

.page-index-app-download-section__final-cta .page-index-app-download-section__section-title {
  color: #FFD700;
}

.page-index-app-download-section__final-cta .page-index-app-download-section__section-description {
  color: #e0e0e0;
}

.page-index-app-download-section__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.page-index-app-download-section__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-width: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-app-download-section__hero-title {
    font-size: 2.5em;
  }
  .page-index-app-download-section__section-title {
    font-size: 2em;
  }
  .page-index-app-download-section__qr-codes {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-app-download-section__features-grid,
  .page-index-app-download-section__features-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-app-download-section__hero {
    padding: 60px 0;
  }
  .page-index-app-download-section__hero-title {
    font-size: 2em;
  }
  .page-index-app-download-section__hero-description {
    font-size: 1em;
  }
  .page-index-app-download-section__download-options {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-app-download-section__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-app-download-section__qr-img {
    width: 120px;
    height: 120px;
  }
  .page-index-app-download-section__section {
    padding: 40px 0;
  }
  .page-index-app-download-section__section-title {
    font-size: 1.8em;
  }
  .page-index-app-download-section__step-item {
    padding: 20px;
  }
  .page-index-app-download-section__step-item h3 {
    font-size: 1.4em;
  }
  .page-index-app-download-section__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-app-download-section__btn--large {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-app-download-section__hero-title {
    font-size: 1.8em;
  }
  .page-index-app-download-section__section-title {
    font-size: 1.6em;
  }
  .page-index-app-download-section__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-index-app-download-section__qr-codes {
    gap: 20px;
  }
  .page-index-app-download-section__qr-img {
    width: 100px;
    height: 100px;
  }
  .page-index-app-download-section__feature-item,
  .page-index-app-download-section__feature-detail-item,
  .page-index-app-download-section__faq-item,
  .page-index-app-download-section__promo-list li,
  .page-index-app-download-section__security-list li {
    padding: 15px;
  }
  .page-index-app-download-section__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-index-app-download-section__step-item h3 {
    font-size: 1.2em;
  }
  .page-index-app-download-section__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}