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

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

.page-app-download-installation__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #2a4a75 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-installation__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23E0B400" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23smallGrid)" opacity="0.05"/></svg>');
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-installation__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E0B400; /* Gold for emphasis */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-installation__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-app-download-installation__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-app-download-installation__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-app-download-installation__sub-section-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E0B400;
  padding-left: 15px;
}

.page-app-download-installation__text-content {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-app-download-installation__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  margin: 10px;
}

.page-app-download-installation__btn--primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-app-download-installation__btn--primary:hover {
  background-color: #ffc800;
  border-color: #ffc800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-app-download-installation__btn--secondary {
  background-color: #0A2342;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-app-download-installation__btn--secondary:hover {
  background-color: #1a3c63;
  border-color: #ffc800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 35, 66, 0.4);
}

.page-app-download-installation__introduction-section,
.page-app-download-installation__requirements-section,
.page-app-download-installation__download-section,
.page-app-download-installation__installation-android-section,
.page-app-download-installation__installation-ios-section,
.page-app-download-installation__post-installation-section,
.page-app-download-installation__troubleshooting-section,
.page-app-download-installation__safety-section,
.page-app-download-installation__exclusive-offers-section,
.page-app-download-installation__conclusion-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-app-download-installation__benefit-item {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-app-download-installation__benefit-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

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

.page-app-download-installation__list,
.page-app-download-installation__numbered-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-app-download-installation__list li,
.page-app-download-installation__numbered-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333;
  font-size: 1.1em;
}

.page-app-download-installation__list li::before {
  content: '✔';
  color: #E0B400;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-app-download-installation__numbered-list li::before {
  content: counter(item);
  counter-increment: item;
  background-color: #0A2342;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
}

.page-app-download-installation__sub-list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
  color: #555;
}

.page-app-download-installation__sub-list li {
  font-size: 1em;
  margin-bottom: 5px;
  padding-left: 0;
}

.page-app-download-installation__sub-list li::before {
  content: '';
  display: none;
}

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

.page-app-download-installation__download-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
}

.page-app-download-installation__download-card-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-app-download-installation__qr-code {
  width: 180px;
  height: 180px;
  margin: 20px auto;
  display: block;
  border: 5px solid #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.page-app-download-installation__warning-text {
  color: #d9534f; /* Red for warning */
  background-color: #fdf2f2;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
  margin-top: 30px;
  font-size: 0.95em;
}

.page-app-download-installation__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation__image--full-width {
  width: 100%;
}

.page-app-download-installation__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-installation__image--small-centered {
  max-width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-installation__cta-buttons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-app-download-installation__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-left: 5px solid #E0B400;
  padding: 20px;
  border-radius: 8px;
}

.page-app-download-installation__faq-question {
  font-size: 1.2em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-app-download-installation__faq-answer {
  color: #555;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-app-download-installation__hero-title {
    font-size: 2.5em;
  }

  .page-app-download-installation__hero-subtitle {
    font-size: 1.2em;
  }

  .page-app-download-installation__section-title {
    font-size: 2em;
  }

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

  .page-app-download-installation__benefits-grid,
  .page-app-download-installation__download-options,
  .page-app-download-installation__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-app-download-installation__download-card {
    padding: 20px;
  }

  .page-app-download-installation__qr-code {
    width: 150px;
    height: 150px;
  }

  .page-app-download-installation__list li,
  .page-app-download-installation__numbered-list li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-installation__hero-title {
    font-size: 2em;
  }

  .page-app-download-installation__hero-subtitle {
    font-size: 1em;
  }

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

  .page-app-download-installation__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }

  .page-app-download-installation__container {
    padding: 0 15px;
  }

  .page-app-download-installation__list li,
  .page-app-download-installation__numbered-list li {
    padding-left: 25px;
  }

  .page-app-download-installation__numbered-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.8em;
  }
}