/* style/download-center-troubleshooting.css */

/* Variables for colors */
:root {
  --primary-color: #1A237E;
  --secondary-color: #FFD700;
  --text-dark: #333;
  --text-light: #fff;
  --background-light: #f9f9f9;
  --background-dark: #121858; /* Slightly lighter than primary for contrast */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-download-center-troubleshooting .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-download-center-troubleshooting .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-troubleshooting .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  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;
}

/* Buttons */
.page-download-center-troubleshooting .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-download-center-troubleshooting .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-troubleshooting .btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center-troubleshooting .btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-download-center-troubleshooting .btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-download-center-troubleshooting .btn-tertiary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-download-center-troubleshooting .btn-tertiary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-download-center-troubleshooting .btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Section Titles */
.page-download-center-troubleshooting .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  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: var(--secondary-color);
  border-radius: 2px;
}

/* Content Sections */
.page-download-center-troubleshooting .content-section {
  padding: 60px 0;
}

.page-download-center-troubleshooting .intro-section {
  background-color: var(--text-light);
}

.page-download-center-troubleshooting .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Feature Grid */
.page-download-center-troubleshooting .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-troubleshooting .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-troubleshooting .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-download-center-troubleshooting .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.page-download-center-troubleshooting .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-download-center-troubleshooting .feature-item p {
  color: #555;
}

/* Download Guide */
.page-download-center-troubleshooting .download-guide-section {
  background-color: var(--background-light);
}

.page-download-center-troubleshooting .guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-download-center-troubleshooting .guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-download-center-troubleshooting .guide-platform {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-troubleshooting .guide-platform h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 25px;
  text-align: center;
}

.page-download-center-troubleshooting .guide-platform ol {
  list-style-type: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.page-download-center-troubleshooting .guide-platform ol li {
  margin-bottom: 20px;
  padding-left: 45px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-download-center-troubleshooting .guide-platform ol li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting .guide-platform ol li strong {
  color: var(--primary-color);
}

.page-download-center-troubleshooting .guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-troubleshooting .call-to-action-mid {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-download-center-troubleshooting .faq-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-download-center-troubleshooting .faq-section .section-title {
  color: var(--secondary-color);
}

.page-download-center-troubleshooting .faq-section .section-title::after {
  background-color: var(--text-light);
}

.page-download-center-troubleshooting .faq-section p {
  color: #ccc;
}

.page-download-center-troubleshooting .faq-list {
  margin-top: 40px;
}

.page-download-center-troubleshooting .faq-item {
  background-color: var(--primary-color);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-troubleshooting .faq-question {
  padding: 20px 30px;
  margin: 0;
  font-size: 1.3em;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-download-center-troubleshooting .faq-question:hover {
  background-color: #2c368f; /* Slightly lighter primary */
}

.page-download-center-troubleshooting .faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-download-center-troubleshooting .faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-troubleshooting .faq-answer {
  padding: 0 30px 20px;
  color: #e0e0e0;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-download-center-troubleshooting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 0 30px 30px;
}

.page-download-center-troubleshooting .faq-answer ul,
.page-download-center-troubleshooting .faq-answer ol {
  margin-top: 15px;
  padding-left: 25px;
}

.page-download-center-troubleshooting .faq-answer ul li,
.page-download-center-troubleshooting .faq-answer ol li {
  margin-bottom: 10px;
}

.page-download-center-troubleshooting .faq-answer a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-download-center-troubleshooting .faq-answer a:hover {
  color: #e6c200;
}

/* Troubleshooting Tips */
.page-download-center-troubleshooting .troubleshooting-tips-section {
  background-color: var(--text-light);
  padding-bottom: 80px;
}

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

.page-download-center-troubleshooting .tips-list li {
  background-color: #f0f2f5;
  border-left: 5px solid var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
  transition: transform 0.3s ease;
}

.page-download-center-troubleshooting .tips-list li:hover {
  transform: translateY(-5px);
}

.page-download-center-troubleshooting .tips-list li strong {
  color: var(--primary-color);
}

.page-download-center-troubleshooting .section-image {
  display: block;
  max-width: 800px;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.page-download-center-troubleshooting .final-cta-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-download-center-troubleshooting .final-cta-section .section-title {
  color: var(--secondary-color);
}

.page-download-center-troubleshooting .final-cta-section .section-title::after {
  background-color: var(--text-light);
}

.page-download-center-troubleshooting .final-cta-section p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 20px auto 40px;
  color: #e0e0e0;
}

.page-download-center-troubleshooting .final-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page-download-center-troubleshooting .link-contact {
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: underline;
}

.page-download-center-troubleshooting .link-contact:hover {
  color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-troubleshooting .hero-title {
    font-size: 2.5em;
  }
  .page-download-center-troubleshooting .hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center-troubleshooting .section-title {
    font-size: 2em;
  }
  .page-download-center-troubleshooting .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-download-center-troubleshooting .hero-section {
    padding: 60px 0;
  }
  .page-download-center-troubleshooting .hero-title {
    font-size: 2em;
  }
  .page-download-center-troubleshooting .hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-troubleshooting .hero-actions, 
  .page-download-center-troubleshooting .call-to-action-mid, 
  .page-download-center-troubleshooting .final-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-troubleshooting .btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-download-center-troubleshooting .section-title {
    font-size: 1.8em;
  }
  .page-download-center-troubleshooting .content-section {
    padding: 40px 0;
  }
  .page-download-center-troubleshooting .feature-item {
    padding: 25px;
  }
  .page-download-center-troubleshooting .guide-platform {
    padding: 30px;
  }
  .page-download-center-troubleshooting .faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-download-center-troubleshooting .faq-answer {
    padding: 0 20px 20px;
  }
  .page-download-center-troubleshooting .faq-item.active .faq-answer {
    padding: 0 20px 25px;
  }
  .page-download-center-troubleshooting .tips-list {
    grid-template-columns: 1fr;
  }
  .page-download-center-troubleshooting .section-image {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-download-center-troubleshooting .hero-title {
    font-size: 1.8em;
  }
  .page-download-center-troubleshooting .section-title {
    font-size: 1.5em;
  }
  .page-download-center-troubleshooting .btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-download-center-troubleshooting .btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-download-center-troubleshooting .feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-download-center-troubleshooting .faq-question {
    font-size: 1em;
  }
  .page-download-center-troubleshooting .guide-platform ol li {
    font-size: 1em;
    padding-left: 40px;
  }
  .page-download-center-troubleshooting .guide-platform ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
}