/* style/app-download-installation-guide.css */
.page-app-download-installation-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

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

.page-app-download-installation-guide__container--center {
  text-align: center;
}

.page-app-download-installation-guide__hero {
  background: linear-gradient(135deg, #0A1931 0%, #2A3B57 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-app-download-installation-guide__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFC107; /* Auxiliary color for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-app-download-installation-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-app-download-installation-guide__btn--primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #0A1931; /* Dark text for auxiliary background */
  border: 2px solid #FFC107;
}

.page-app-download-installation-guide__btn--primary:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
}

.page-app-download-installation-guide__btn--secondary {
  background-color: transparent;
  color: #FFC107; /* Auxiliary color */
  border: 2px solid #FFC107;
}

.page-app-download-installation-guide__btn--secondary:hover {
  background-color: #FFC107;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-app-download-installation-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.page-app-download-installation-guide__section:last-of-type {
  border-bottom: none;
}

.page-app-download-installation-guide__section-title {
  font-size: 2.2em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

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

.page-app-download-installation-guide__benefit-item {
  background-color: #1A2B47; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-app-download-installation-guide__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

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

.page-app-download-installation-guide__benefit-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-app-download-installation-guide__step-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-app-download-installation-guide__step-item {
  background-color: #1A2B47;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-app-download-installation-guide__step-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-installation-guide__step-item p,
.page-app-download-installation-guide__step-item ol,
.page-app-download-installation-guide__step-item ul {
  font-size: 1.1em;
  color: #D0D0D0;
  max-width: 800px;
  margin-bottom: 20px;
}

.page-app-download-installation-guide__step-item ol,
.page-app-download-installation-guide__step-item ul {
  text-align: left;
  width: 100%;
  max-width: 700px;
  padding-left: 40px;
}

.page-app-download-installation-guide__step-item li {
  margin-bottom: 10px;
}

.page-app-download-installation-guide__step-item strong {
  color: #FFC107;
}

.page-app-download-installation-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-app-download-installation-guide__faq-item {
  background-color: #1A2B47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-guide__faq-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-installation-guide__faq-item p {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 10px;
}

.page-app-download-installation-guide__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #D0D0D0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-installation-guide__title {
    font-size: 2.2em;
  }

  .page-app-download-installation-guide__section-title {
    font-size: 1.8em;
  }

  .page-app-download-installation-guide__benefit-title {
    font-size: 1.3em;
  }

  .page-app-download-installation-guide__step-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-app-download-installation-guide__hero {
    padding: 80px 0;
  }

  .page-app-download-installation-guide__title {
    font-size: 1.8em;
  }

  .page-app-download-installation-guide__subtitle {
    font-size: 1em;
  }

  .page-app-download-installation-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-app-download-installation-guide__section {
    padding: 40px 0;
  }

  .page-app-download-installation-guide__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-app-download-installation-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-app-download-installation-guide__step-item {
    padding: 30px;
  }

  .page-app-download-installation-guide__step-title {
    font-size: 1.3em;
  }

  .page-app-download-installation-guide__step-item p,
  .page-app-download-installation-guide__step-item ol,
  .page-app-download-installation-guide__step-item ul {
    font-size: 0.95em;
  }

  .page-app-download-installation-guide__faq-title {
    font-size: 1.4em;
  }

  .page-app-download-installation-guide__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-installation-guide__title {
    font-size: 1.5em;
  }

  .page-app-download-installation-guide__btn {
    width: 100%;
    margin: 10px 0;
  }

  .page-app-download-installation-guide__cta-buttons {
    flex-direction: column;
  }

  .page-app-download-installation-guide__step-item ol,
  .page-app-download-installation-guide__step-item ul {
    padding-left: 20px;
  }
}