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

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

.page-app-download-troubleshooting__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-troubleshooting__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-app-download-troubleshooting__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-app-download-troubleshooting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: nowrap;
}

.page-app-download-troubleshooting__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #0056b3; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

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

.page-app-download-troubleshooting__btn--secondary {
  background-color: transparent;
  color: #007bff; /* Primary color */
  border: 2px solid #007bff;
}

.page-app-download-troubleshooting__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

.page-app-download-troubleshooting__content-section {
  padding: 60px 0;
}

.page-app-download-troubleshooting__article {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-troubleshooting__article-title {
  font-size: 2em;
  color: #007bff; /* Primary color */
  margin-bottom: 25px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-app-download-troubleshooting__sub-title {
  font-size: 1.5em;
  color: #343a40;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-app-download-troubleshooting__article p {
  margin-bottom: 15px;
  color: #555;
}

.page-app-download-troubleshooting__article ul,
.page-app-download-troubleshooting__article ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-app-download-troubleshooting__article ul li,
.page-app-download-troubleshooting__article ol li {
  margin-bottom: 8px;
  color: #555;
}

.page-app-download-troubleshooting__article a {
  color: #007bff;
  text-decoration: none;
}

.page-app-download-troubleshooting__article a:hover {
  text-decoration: underline;
}

.page-app-download-troubleshooting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-app-download-troubleshooting__image--small {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-troubleshooting__image--medium {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-troubleshooting__image--large {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-troubleshooting__faq-section {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
}

.page-app-download-troubleshooting__faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e9ecef;
}

.page-app-download-troubleshooting__faq-item:last-child {
  border-bottom: none;
}

.page-app-download-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #0056b3; /* Darker primary for contrast */
  margin-bottom: 10px;
  cursor: pointer;
}

.page-app-download-troubleshooting__faq-answer {
  color: #495057;
  padding-left: 15px;
  border-left: 3px solid #ffc107;
  margin-left: 5px;
}

.page-app-download-troubleshooting__cta-section {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 60px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.page-app-download-troubleshooting__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #fff;
}

.page-app-download-troubleshooting__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-app-download-troubleshooting__cta-buttons .page-app-download-troubleshooting__btn {
  margin: 0 10px;
}

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

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

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

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

  .page-app-download-troubleshooting__article {
    padding: 25px;
  }

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

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

  .page-app-download-troubleshooting__cta-text {
    font-size: 1em;
  }

  .page-app-download-troubleshooting__cta-buttons {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
}

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

  .page-app-download-troubleshooting__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-app-download-troubleshooting__sub-title {
    font-size: 1.2em;
  }

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

  .page-app-download-troubleshooting__btn {
    padding: 8px 15px;
    font-size: 0.85em;
    margin: 5px;
  }

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

  .page-app-download-troubleshooting__cta-text {
    font-size: 0.9em;
  }
}