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

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

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

.page-app-download-troubleshooting__hero {
  background: linear-gradient(135deg, #004AAD, #0028ff);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-troubleshooting__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-app-download-troubleshooting__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-app-download-troubleshooting__highlight {
  color: #FFD700;
}

.page-app-download-troubleshooting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-app-download-troubleshooting__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

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

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

.page-app-download-troubleshooting__btn--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-2px);
}

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

.page-app-download-troubleshooting__section--alt-bg {
  background-color: #f8f8f8;
}

.page-app-download-troubleshooting__section-title {
  font-size: 2.2em;
  color: #004AAD;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-app-download-troubleshooting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-app-download-troubleshooting__section-title--left::after {
  left: 0;
  transform: translateX(0);
}

.page-app-download-troubleshooting__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-app-download-troubleshooting__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-app-download-troubleshooting__text-content {
  flex: 1;
}

.page-app-download-troubleshooting__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-app-download-troubleshooting__text-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-app-download-troubleshooting__text-content ul li {
  margin-bottom: 8px;
  color: #444;
}

.page-app-download-troubleshooting__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-app-download-troubleshooting__image-wrapper--center {
  margin-top: 40px;
}

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

.page-app-download-troubleshooting__image--small {
  max-width: 300px;
  margin-top: 20px;
}

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

.page-app-download-troubleshooting__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid #004AAD;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-app-download-troubleshooting__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #004AAD;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-app-download-troubleshooting__step-item h3 {
  font-size: 1.4em;
  color: #004AAD;
  margin-bottom: 10px;
}

.page-app-download-troubleshooting__step-item p {
  color: #555;
}

.page-app-download-troubleshooting__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-app-download-troubleshooting__faq-question {
  background-color: #004AAD;
  color: #ffffff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-app-download-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-app-download-troubleshooting__faq-content {
  padding: 20px 25px;
  color: #444;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-app-download-troubleshooting__faq-content.active {
  display: block;
  max-height: 1000px; /* Arbitrary large value for smooth transition */
  padding: 20px 25px;
}

.page-app-download-troubleshooting__faq-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-app-download-troubleshooting__faq-content ul li {
  margin-bottom: 5px;
}

.page-app-download-troubleshooting__faq-content p {
  margin-bottom: 15px;
}

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

.page-app-download-troubleshooting__tips-list li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 30px;
  color: #444;
}

.page-app-download-troubleshooting__tips-list li::before {
  content: '✔';
  position: absolute;
  left: 10px;
  top: 20px;
  color: #004AAD;
  font-weight: bold;
}

.page-app-download-troubleshooting__btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.page-app-download-troubleshooting__section--final-cta {
  background: linear-gradient(45deg, #004AAD, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__section-title {
  color: #ffffff;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__section-title::after {
  background-color: #ffffff;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__description {
  color: #e0e0e0;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__btn--primary {
  background-color: #ffffff;
  color: #004AAD;
  border-color: #ffffff;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__btn--primary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-app-download-troubleshooting__section--final-cta .page-app-download-troubleshooting__btn--secondary:hover {
  background-color: #ffffff;
  color: #004AAD;
}

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

  .page-app-download-troubleshooting__subtitle,
  .page-app-download-troubleshooting__description {
    font-size: 1em;
  }

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

  .page-app-download-troubleshooting__content-grid {
    flex-direction: column;
  }

  .page-app-download-troubleshooting__image-wrapper {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }

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

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

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

  .page-app-download-troubleshooting__faq-content {
    padding: 15px 20px;
  }

  .page-app-download-troubleshooting__tips-list {
    grid-template-columns: 1fr;
  }

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