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

/* Base styles for the page content container */
.page-download-installation-troubleshooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

/* Container for content width */
.page-download-installation-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Flex container for main content and sidebar */
.page-download-installation-troubleshooting__container--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Hero Section */
.page-download-installation-troubleshooting__hero-section {
  background: linear-gradient(135deg, #1A237E, #3f479e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-download-installation-troubleshooting__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-download-installation-troubleshooting__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

/* CTA Buttons */
.page-download-installation-troubleshooting__cta-button {
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-installation-troubleshooting__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-download-installation-troubleshooting__cta-button--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-download-installation-troubleshooting__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-download-installation-troubleshooting__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-download-installation-troubleshooting__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

/* Content Section */
.page-download-installation-troubleshooting__content-section {
  padding: 60px 0;
  background-color: #fefefe;
}

.page-download-installation-troubleshooting__article {
  flex: 3;
  min-width: 0;
}

.page-download-installation-troubleshooting__sidebar {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: flex-start; /* Stick to the top */
}

.page-download-installation-troubleshooting__section-title {
  font-size: 2.2em;
  color: #1A237E; /* Dark Blue */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-download-installation-troubleshooting__sub-section-title {
  font-size: 1.6em;
  color: #3f479e; /* Slightly lighter dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-download-installation-troubleshooting__article p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05em;
}

.page-download-installation-troubleshooting__text-link {
  color: #1A237E;
  text-decoration: underline;
  font-weight: 600;
}

.page-download-installation-troubleshooting__text-link:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-download-installation-troubleshooting__feature-list,
.page-download-installation-troubleshooting__step-list,
.page-download-installation-troubleshooting__solution-list,
.page-download-installation-troubleshooting__widget-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-download-installation-troubleshooting__feature-list li,
.page-download-installation-troubleshooting__solution-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-download-installation-troubleshooting__feature-list li .icon-check::before,
.page-download-installation-troubleshooting__solution-list li::before {
  content: '✔'; /* Unicode checkmark */
  color: #FFD700; /* Gold */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-download-installation-troubleshooting__step-list li {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.page-download-installation-troubleshooting__step-list li strong {
  color: #1A237E;
}

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

.page-download-installation-troubleshooting__highlight {
  background-color: rgba(255, 215, 0, 0.2);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
  color: #1A237E;
}

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

/* Sidebar Widgets */
.page-download-installation-troubleshooting__sidebar-widget {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f0f2f5;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-download-installation-troubleshooting__sidebar-widget--promo {
  background-color: #1A237E;
  color: #fff;
  border-left: 5px solid #FFD700;
}

.page-download-installation-troubleshooting__sidebar-widget--promo .page-download-installation-troubleshooting__widget-title {
  color: #FFD700;
}

.page-download-installation-troubleshooting__sidebar-widget--promo p {
  color: #e0e0e0;
}

.page-download-installation-troubleshooting__widget-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-installation-troubleshooting__widget-list li {
  margin-bottom: 10px;
}

.page-download-installation-troubleshooting__widget-list a {
  color: #3f479e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-download-installation-troubleshooting__widget-list a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-installation-troubleshooting__container--flex {
    flex-direction: column;
  }

  .page-download-installation-troubleshooting__article,
  .page-download-installation-troubleshooting__sidebar {
    flex: none;
    width: 100%;
  }

  .page-download-installation-troubleshooting__main-title {
    font-size: 2.5em;
  }

  .page-download-installation-troubleshooting__subtitle {
    font-size: 1.1em;
  }

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

  .page-download-installation-troubleshooting__sub-section-title {
    font-size: 1.4em;
  }

  .page-download-installation-troubleshooting__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-download-installation-troubleshooting__hero-section {
    padding: 60px 0;
  }

  .page-download-installation-troubleshooting__main-title {
    font-size: 2em;
  }

  .page-download-installation-troubleshooting__subtitle {
    font-size: 1em;
  }

  .page-download-installation-troubleshooting__content-section {
    padding: 40px 0;
  }

  .page-download-installation-troubleshooting__section-title {
    font-size: 1.6em;
  }

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

  .page-download-installation-troubleshooting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-installation-troubleshooting__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-download-installation-troubleshooting__cta-button--secondary {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .page-download-installation-troubleshooting__container {
    padding: 0 15px;
  }

  .page-download-installation-troubleshooting__main-title {
    font-size: 1.8em;
  }

  .page-download-installation-troubleshooting__section-title {
    font-size: 1.4em;
  }

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

  .page-download-installation-troubleshooting__cta-button {
    width: 100%;
    margin-left: 0 !important; /* Override margin for full width */
  }

  .page-download-installation-troubleshooting__cta-group {
    gap: 10px;
  }
}