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

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

.page-download-center-troubleshooting__hero {
  background: linear-gradient(135deg, #1A237E, #3f479d);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-troubleshooting__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric_shapes,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-troubleshooting__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  position: relative;
  z-index: 1;
}

.page-download-center-troubleshooting__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-download-center-troubleshooting__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-download-center-troubleshooting__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1em;
  cursor: pointer;
}

.page-download-center-troubleshooting__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  border-color: #FFD700;
}

.page-download-center-troubleshooting__button--primary:hover {
  background-color: #e5c100; /* Slightly darker gold */
  border-color: #e5c100;
}

.page-download-center-troubleshooting__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

.page-download-center-troubleshooting__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E; /* Dark blue */
}

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

.page-download-center-troubleshooting__section--alt-bg {
  background-color: #e6e9f2; /* Lighter shade of blue for contrast */
}

.page-download-center-troubleshooting__section-title {
  font-size: 2.2em;
  color: #1A237E; /* Dark blue */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-download-center-troubleshooting__subsection-title {
  font-size: 1.6em;
  color: #1A237E; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding-left: 15px;
}

.page-download-center-troubleshooting__list,
.page-download-center-troubleshooting__numbered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-download-center-troubleshooting__list li,
.page-download-center-troubleshooting__numbered-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.page-download-center-troubleshooting__list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-download-center-troubleshooting__numbered-list li::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: #1A237E; /* Dark blue number */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-download-center-troubleshooting__image--medium {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-troubleshooting__image--small {
  display: block;
  max-width: 60%;
  height: auto;
  margin: 20px auto;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-download-center-troubleshooting a {
  color: #1A237E;
  text-decoration: underline;
}

.page-download-center-troubleshooting a:hover {
  color: #FFD700;
}

.page-download-center-troubleshooting__cta-section {
  background: linear-gradient(45deg, #1A237E, #3f479d);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.page-download-center-troubleshooting__cta-content {
  max-width: 800px;
}

.page-download-center-troubleshooting__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

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

.page-download-center-troubleshooting__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-download-center-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #1A237E; /* Dark blue */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__faq-answer {
  color: #555;
}

/* Responsive design */
@media (max-width: 768px) {
  .page-download-center-troubleshooting__hero-title {
    font-size: 2em;
  }
  .page-download-center-troubleshooting__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-troubleshooting__hero-actions {
    flex-direction: column;
  }
  .page-download-center-troubleshooting__button {
    width: 80%;
    margin: 5px auto;
  }
  .page-download-center-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-download-center-troubleshooting__subsection-title {
    font-size: 1.4em;
  }
  .page-download-center-troubleshooting__image--medium,
  .page-download-center-troubleshooting__image--small {
    max-width: 100%;
  }
  .page-download-center-troubleshooting__cta-title {
    font-size: 2em;
  }
  .page-download-center-troubleshooting__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-download-center-troubleshooting__hero {
    padding: 50px 0;
  }
  .page-download-center-troubleshooting__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-troubleshooting__section {
    padding: 40px 0;
  }
  .page-download-center-troubleshooting__section-title {
    font-size: 1.6em;
  }
  .page-download-center-troubleshooting__subsection-title {
    font-size: 1.2em;
  }
  .page-download-center-troubleshooting__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* Ensure color contrast for all text */
.page-download-center-troubleshooting p,
.page-download-center-troubleshooting li,
.page-download-center-troubleshooting .page-download-center-troubleshooting__faq-answer {
  color: #333333; /* Dark gray on light background, contrast with #f8f8f8 is ~13:1 */
}

.page-download-center-troubleshooting__hero-title,
.page-download-center-troubleshooting__hero-subtitle,
.page-download-center-troubleshooting__cta-title,
.page-download-center-troubleshooting__cta-text {
  color: #ffffff; /* White on dark background, contrast with #1A237E is ~16:1 */
}

.page-download-center-troubleshooting__button--primary {
  color: #1A237E; /* Dark blue on gold, contrast with #FFD700 is ~4.9:1 (meets AA) */
}

.page-download-center-troubleshooting__button--secondary {
  color: #FFD700; /* Gold on transparent/dark background, contrast with #1A237E is ~4.9:1 (meets AA) */
}

.page-download-center-troubleshooting__button--secondary:hover {
  color: #1A237E; /* Dark blue on gold hover, contrast with #FFD700 is ~4.9:1 (meets AA) */
}

.page-download-center-troubleshooting__section-title,
.page-download-center-troubleshooting__subsection-title,
.page-download-center-troubleshooting__faq-question {
  color: #1A237E; /* Dark blue on light background, contrast with #f8f8f8 is ~9.6:1 */
}

.page-download-center-troubleshooting a {
  color: #1A237E; /* Dark blue for links on light background, contrast with #f8f8f8 is ~9.6:1 */
}