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

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

/* Hero Section */
.page-app-download-installation-faq__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Slightly lighter gradient for visual depth */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-app-download-installation-faq__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-app-download-installation-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-app-download-installation-faq__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-installation-faq__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold for CTA */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-installation-faq__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-app-download-installation-faq__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 300px; /* Adjust size */
  height: 300px; /* Adjust size */
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.page-app-download-installation-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FAQ Section */
.page-app-download-installation-faq__faq-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-app-download-installation-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-installation-faq__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-app-download-installation-faq__faq-item {
  background-color: #1a2c42; /* Slightly lighter dark blue for FAQ item background */
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-app-download-installation-faq__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-app-download-installation-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-app-download-installation-faq__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none; /* Hidden by default */
}

.page-app-download-installation-faq__faq-answer.active {
  display: block; /* Shown when active */
}

.page-app-download-installation-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-app-download-installation-faq__faq-answer ul,
.page-app-download-installation-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-app-download-installation-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-app-download-installation-faq__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-app-download-installation-faq__faq-answer a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-app-download-installation-faq__inline-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-app-download-installation-faq__inline-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Call to Action Section */
.page-app-download-installation-faq__cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-installation-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-installation-faq__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-app-download-installation-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

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

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

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

.page-app-download-installation-faq__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-app-download-installation-faq__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-app-download-installation-faq__cta-image {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-app-download-installation-faq__hero {
    padding: 60px 0;
  }

  .page-app-download-installation-faq__hero-title {
    font-size: 2.5em;
  }

  .page-app-download-installation-faq__hero-subtitle {
    font-size: 1.1em;
  }

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

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

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

  .page-app-download-installation-faq__faq-question {
    font-size: 1.3em;
  }

  .page-app-download-installation-faq__faq-answer {
    font-size: 0.95em;
  }

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

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

  .page-app-download-installation-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-app-download-installation-faq__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-app-download-installation-faq__hero-image-wrapper {
    display: none; /* Hide on smaller screens */
  }
}

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

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

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

  .page-app-download-installation-faq__faq-item {
    padding: 20px;
  }
}