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

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

.page-download-guide-troubleshooting__hero-section {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-guide-troubleshooting__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 128, 0) 70%);
  opacity: 0.3;
  animation: page-download-guide-troubleshooting__hero-animation 15s infinite alternate;
}

@keyframes page-download-guide-troubleshooting__hero-animation {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(20%, 20%) rotate(360deg); }
}

.page-download-guide-troubleshooting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  color: #FFD700; /* Ensure high contrast */
}

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

.page-download-guide-troubleshooting__cta-button {
  display: inline-block;
  background-color: #DC143C;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-download-guide-troubleshooting__cta-button:hover {
  background-color: #a80f2d;
  transform: translateY(-3px);
}

.page-download-guide-troubleshooting__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

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

.page-download-guide-troubleshooting__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

.page-download-guide-troubleshooting__why-download,
.page-download-guide-troubleshooting__download-steps,
.page-download-guide-troubleshooting__troubleshooting-section,
.page-download-guide-troubleshooting__tips-section,
.page-download-guide-troubleshooting__contact-section,
.page-download-guide-troubleshooting__cta-bottom {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download-guide-troubleshooting__why-download {
  background-color: #fff;
}

.page-download-guide-troubleshooting__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-download-guide-troubleshooting__text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-download-guide-troubleshooting__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-download-guide-troubleshooting__image--center {
  display: block;
  margin: 40px auto;
  max-width: 80%;
}

.page-download-guide-troubleshooting__features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-download-guide-troubleshooting__features-list li {
  background-color: #e6f7ff; /* Light blue */
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 5px solid #000080;
  border-radius: 5px;
  color: #333;
}

.page-download-guide-troubleshooting__highlight {
  color: #000080;
}

.page-download-guide-troubleshooting__download-steps {
  background-color: #f0f8ff;
}

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

.page-download-guide-troubleshooting__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-download-guide-troubleshooting__step-item:hover {
  transform: translateY(-5px);
}

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

.page-download-guide-troubleshooting__step-item h3 {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

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

.page-download-guide-troubleshooting__step-item p a {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
}

.page-download-guide-troubleshooting__step-item p a:hover {
  text-decoration: underline;
}

.page-download-guide-troubleshooting__troubleshooting-section {
  background-color: #ffffff;
}

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

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

.page-download-guide-troubleshooting__faq-question:hover {
  background-color: #000066;
}

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

.page-download-guide-troubleshooting__faq-item.active .page-download-guide-troubleshooting__faq-question::after {
  transform: rotate(45deg);
}

.page-download-guide-troubleshooting__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  color: #444;
  display: none;
}

.page-download-guide-troubleshooting__faq-item.active .page-download-guide-troubleshooting__faq-answer {
  display: block;
}

.page-download-guide-troubleshooting__faq-answer p {
  margin-bottom: 15px;
}

.page-download-guide-troubleshooting__solution-heading {
  color: #DC143C;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-download-guide-troubleshooting__solution-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-download-guide-troubleshooting__solution-list li {
  margin-bottom: 10px;
}

.page-download-guide-troubleshooting__solution-list li a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-download-guide-troubleshooting__solution-list li a:hover {
  text-decoration: underline;
}

.page-download-guide-troubleshooting__tips-section {
  background-color: #fffaf0;
}

.page-download-guide-troubleshooting__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-download-guide-troubleshooting__tips-list li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-download-guide-troubleshooting__contact-section {
  background-color: #e6f7ff;
  text-align: center;
}

.page-download-guide-troubleshooting__cta-bottom {
  background-color: #000080;
  color: #ffffff;
  text-align: center;
}

.page-download-guide-troubleshooting__cta-bottom .page-download-guide-troubleshooting__section-title {
  color: #FFD700;
}

.page-download-guide-troubleshooting__cta-bottom .page-download-guide-troubleshooting__description {
  color: #f0f0f0;
}

.page-download-guide-troubleshooting__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-guide-troubleshooting__cta-button--primary {
  background-color: #DC143C;
  color: #ffffff;
}

.page-download-guide-troubleshooting__cta-button--primary:hover {
  background-color: #a80f2d;
}

.page-download-guide-troubleshooting__cta-button--secondary {
  background-color: #FFD700;
  color: #000080;
}

.page-download-guide-troubleshooting__cta-button--secondary:hover {
  background-color: #e6c200;
  color: #000066;
}

.page-download-guide-troubleshooting__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #DC143C;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  animation: page-download-guide-troubleshooting__float-in 0.5s ease-out;
}

@keyframes page-download-guide-troubleshooting__float-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.page-download-guide-troubleshooting__floating-promo-content p {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
}

.page-download-guide-troubleshooting__floating-promo-button {
  background-color: #FFD700;
  color: #000080;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-download-guide-troubleshooting__floating-promo-button:hover {
  background-color: #e6c200;
}

.page-download-guide-troubleshooting__floating-promo-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
}

.page-download-guide-troubleshooting__floating-promo-close:hover {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-guide-troubleshooting__hero-title {
    font-size: 2.8em;
  }
  .page-download-guide-troubleshooting__hero-subtitle {
    font-size: 1.3em;
  }
  .page-download-guide-troubleshooting__section-title {
    font-size: 2em;
  }
  .page-download-guide-troubleshooting__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-download-guide-troubleshooting__image-wrapper {
    order: -1;
  }
  .page-download-guide-troubleshooting__steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-download-guide-troubleshooting__hero-title {
    font-size: 2.2em;
  }
  .page-download-guide-troubleshooting__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-guide-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-download-guide-troubleshooting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-guide-troubleshooting__floating-promo {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding: 10px 15px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }
  .page-download-guide-troubleshooting__floating-promo-content {
    text-align: center;
    width: 100%;
  }
  .page-download-guide-troubleshooting__floating-promo-button {
    width: 100%;
    text-align: center;
  }
  .page-download-guide-troubleshooting__floating-promo-close {
    position: absolute;
    top: 5px;
    right: 5px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-download-guide-troubleshooting__hero-title {
    font-size: 1.8em;
  }
  .page-download-guide-troubleshooting__hero-subtitle {
    font-size: 0.9em;
  }
  .page-download-guide-troubleshooting__section-title {
    font-size: 1.5em;
  }
  .page-download-guide-troubleshooting__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-download-guide-troubleshooting__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-download-guide-troubleshooting__button-group {
    flex-direction: column;
  }
  .page-download-guide-troubleshooting__floating-promo {
    border-radius: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-download-guide-troubleshooting__floating-promo-content {
    width: auto;
    text-align: left;
  }
  .page-download-guide-troubleshooting__floating-promo-button {
    width: auto;
  }
  .page-download-guide-troubleshooting__floating-promo-close {
    position: static;
  }
}