.page-app-download-installation-faq {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-app-download-installation-faq__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-app-download-installation-faq__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
  opacity: 0.3;
  animation: page-app-download-installation-faq__hero-glow 15s infinite alternate;
}

@keyframes page-app-download-installation-faq__hero-glow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-app-download-installation-faq__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-app-download-installation-faq__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Lighter white for subtitle */
  position: relative;
  z-index: 1;
}

.page-app-download-installation-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-app-download-installation-faq__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #003366;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-installation-faq__button--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-app-download-installation-faq__button--secondary {
  background-color: #004d99; /* Darker blue button */
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
  margin-top: 20px; /* Add some space if it's below a section */
}

.page-app-download-installation-faq__button--secondary:hover {
  background-color: #003366; /* Even darker blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.6);
}

.page-app-download-installation-faq__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-app-download-installation-faq__heading {
  font-size: 2.2em;
  color: #003366; /* Main blue for headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.page-app-download-installation-faq__subheading {
  font-size: 1.6em;
  color: #004d99; /* Slightly lighter blue for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-app-download-installation-faq__paragraph {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-app-download-installation-faq__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation-faq__list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-app-download-installation-faq__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-app-download-installation-faq__list--bullet {
  list-style-type: disc;
  margin-left: 25px;
}

.page-app-download-installation-faq__list--contact {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-app-download-installation-faq__list--contact li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 30px;
}

.page-app-download-installation-faq__list--contact li strong {
  color: #003366;
}

.page-app-download-installation-faq__list--contact li::before {
  content: '⚡'; /* Example icon, could be a font awesome icon */
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.2em;
  line-height: 1.5;
}

.page-app-download-installation-faq__link {
  color: #004d99;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-app-download-installation-faq__link:hover {
  color: #FFD700;
}

/* FAQ Accordion Styling */
.page-app-download-installation-faq__faq-item {
  background-color: #f0f8ff; /* Light blue background for FAQ item */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-app-download-installation-faq__faq-question {
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  font-size: 1.2em;
  color: #003366;
  background-color: #e6f2ff; /* Slightly lighter blue for question header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-app-download-installation-faq__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #003366;
  transition: transform 0.3s ease;
}

.page-app-download-installation-faq__faq-question.active::after {
  content: '-';
  transform: rotate(0deg); /* No rotation for minus */
}

.page-app-download-installation-faq__faq-question:hover {
  background-color: #d9edf7; /* Even lighter blue on hover */
}

.page-app-download-installation-faq__faq-answer {
  padding: 0 25px;
  background-color: #f8f9fa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-app-download-installation-faq__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  color: #555;
}

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

  .page-app-download-installation-faq__subtitle {
    font-size: 1.2em;
  }

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

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

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

  .page-app-download-installation-faq__paragraph,
  .page-app-download-installation-faq__list li {
    font-size: 1em;
  }
}

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

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

  .page-app-download-installation-faq__heading {
    font-size: 1.6em;
  }

  .page-app-download-installation-faq__subheading {
    font-size: 1.2em;
  }

  .page-app-download-installation-faq__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-app-download-installation-faq__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
}