/* style/blog-pk14-link-faq-and-troubleshooting.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-blog-pk14-link-faq-and-troubleshooting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for decor */
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-pk14-link-faq-and-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-pk14-link-faq-and-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text contrast, not color change */
}

.page-blog-pk14-link-faq-and-troubleshooting__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow */
  padding: 0 20px;
}

.page-blog-pk14-link-faq-and-troubleshooting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-pk14-link-faq-and-troubleshooting__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-pk14-link-faq-and-troubleshooting__btn-primary,
.page-blog-pk14-link-faq-and-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-pk14-link-faq-and-troubleshooting__btn-primary {
  background-color: var(--login-button-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-button-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__btn-primary:hover {
  background-color: darken(var(--login-button-color), 10%);
  border-color: darken(var(--login-button-color), 10%);
}

.page-blog-pk14-link-faq-and-troubleshooting__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-pk14-link-faq-and-troubleshooting__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-blog-pk14-link-faq-and-troubleshooting__text-block {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color-dark);
}

.page-blog-pk14-link-faq-and-troubleshooting__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-pk14-link-faq-and-troubleshooting__text-block a:hover {
  text-decoration: underline;
}

.page-blog-pk14-link-faq-and-troubleshooting__image-container {
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-pk14-link-faq-and-troubleshooting__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-pk14-link-faq-and-troubleshooting__issue-list,
.page-blog-pk14-link-faq-and-troubleshooting__solution-list,
.page-blog-pk14-link-faq-and-troubleshooting__tips-list {
  display: grid;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-blog-pk14-link-faq-and-troubleshooting__issue-item,
.page-blog-pk14-link-faq-and-troubleshooting__solution-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__issue-heading,
.page-blog-pk14-link-faq-and-troubleshooting__solution-heading {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-pk14-link-faq-and-troubleshooting__issue-description,
.page-blog-pk14-link-faq-and-troubleshooting__solution-description {
  font-size: 1rem;
  color: var(--text-color-dark);
}

.page-blog-pk14-link-faq-and-troubleshooting__tips-list {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-pk14-link-faq-and-troubleshooting__tip-item {
  font-size: 1.05rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-color-dark);
}

.page-blog-pk14-link-faq-and-troubleshooting__tip-item::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--text-color-dark);
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-qtext {
  flex-grow: 1;
  color: var(--primary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-color-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-pk14-link-faq-and-troubleshooting__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-blog-pk14-link-faq-and-troubleshooting__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-pk14-link-faq-and-troubleshooting__cta-buttons--bottom {
  margin-top: 40px;
}

/* Responsive Design */

@media (min-width: 769px) {
  .page-blog-pk14-link-faq-and-troubleshooting__issue-list,
  .page-blog-pk14-link-faq-and-troubleshooting__solution-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .page-blog-pk14-link-faq-and-troubleshooting__hero-content {
    margin-top: -150px; /* More overlap on larger screens */
  }
}

@media (max-width: 1024px) {
  .page-blog-pk14-link-faq-and-troubleshooting__hero-content {
    margin-top: -80px;
  }
  .page-blog-pk14-link-faq-and-troubleshooting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-pk14-link-faq-and-troubleshooting__description {
    font-size: 1rem;
  }
  .page-blog-pk14-link-faq-and-troubleshooting__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-pk14-link-faq-and-troubleshooting {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-pk14-link-faq-and-troubleshooting__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__hero-content {
    margin-top: -50px;
    padding: 0 15px;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__btn-primary,
  .page-blog-pk14-link-faq-and-troubleshooting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__text-block {
    font-size: 1rem;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__image-container,
  .page-blog-pk14-link-faq-and-troubleshooting__issue-item,
  .page-blog-pk14-link-faq-and-troubleshooting__solution-item,
  .page-blog-pk14-link-faq-and-troubleshooting__tips-list,
  .page-blog-pk14-link-faq-and-troubleshooting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__issue-heading,
  .page-blog-pk14-link-faq-and-troubleshooting__solution-heading {
    font-size: 1.3rem;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__tip-item {
    font-size: 1rem;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-pk14-link-faq-and-troubleshooting__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
}