/* style/blog-troubleshooting-pk14-registration.css */

/* Base styles */
.page-blog-troubleshooting-pk14-registration {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for assumed light body background */
  background-color: #ffffff; /* Explicitly set for main content contrast */
}

/* Hero Section */
.page-blog-troubleshooting-pk14-registration__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: #f5f5f5;
}

.page-blog-troubleshooting-pk14-registration__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-troubleshooting-pk14-registration__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-troubleshooting-pk14-registration__hero-content {
  max-width: 800px;
  padding: 20px;
  margin-top: 20px;
  color: #333333;
}

.page-blog-troubleshooting-pk14-registration__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-troubleshooting-pk14-registration__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

/* General Section Styling */
.page-blog-troubleshooting-pk14-registration__section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-blog-troubleshooting-pk14-registration__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-blog-troubleshooting-pk14-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-troubleshooting-pk14-registration__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-troubleshooting-pk14-registration__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-troubleshooting-pk14-registration__content-wrapper p {
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-troubleshooting-pk14-registration__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-troubleshooting-pk14-registration__list-item {
  margin-bottom: 10px;
}

.page-blog-troubleshooting-pk14-registration__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-blog-troubleshooting-pk14-registration__btn-primary,
.page-blog-troubleshooting-pk14-registration__btn-secondary,
.page-blog-troubleshooting-pk14-registration a[class*="button"],
.page-blog-troubleshooting-pk14-registration a[class*="btn"] {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-troubleshooting-pk14-registration__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-top: 20px;
}

.page-blog-troubleshooting-pk14-registration__btn-primary:hover {
  background-color: #1a8ac7;
  border-color: #1a8ac7;
}

.page-blog-troubleshooting-pk14-registration__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-top: 20px;
}

.page-blog-troubleshooting-pk14-registration__btn-secondary:hover {
  background-color: #e6f7ff;
}

/* Specific Login Button Color */
.page-blog-troubleshooting-pk14-registration__btn-login {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-troubleshooting-pk14-registration__btn-login:hover {
  background-color: #c46406;
  border-color: #c46406;
}

/* FAQ Section */
.page-blog-troubleshooting-pk14-registration__faq-list {
  margin-top: 30px;
}

.page-blog-troubleshooting-pk14-registration__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-troubleshooting-pk14-registration__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.page-blog-troubleshooting-pk14-registration__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-troubleshooting-pk14-registration__faq-qtext {
  flex-grow: 1;
}

.page-blog-troubleshooting-pk14-registration__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07;
}

.page-blog-troubleshooting-pk14-registration__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  color: #555555;
}

/* Highlight text */
.page-blog-troubleshooting-pk14-registration .highlight {
  color: #26A9E0;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-troubleshooting-pk14-registration__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-troubleshooting-pk14-registration__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-troubleshooting-pk14-registration__description {
    font-size: 1em;
  }

  .page-blog-troubleshooting-pk14-registration__section {
    padding: 40px 0;
  }

  .page-blog-troubleshooting-pk14-registration__container {
    padding: 0 15px;
  }

  .page-blog-troubleshooting-pk14-registration__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-troubleshooting-pk14-registration__sub-title {
    font-size: 1.5em;
  }

  .page-blog-troubleshooting-pk14-registration__btn-primary,
  .page-blog-troubleshooting-pk14-registration__btn-secondary,
  .page-blog-troubleshooting-pk14-registration a[class*="button"],
  .page-blog-troubleshooting-pk14-registration a[class*="btn"] {
    padding: 10px 20px;
    font-size: 0.95em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px;
  }

  /* Ensure all image containers and images are responsive */
  .page-blog-troubleshooting-pk14-registration img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-troubleshooting-pk14-registration__hero-image-wrapper,
  .page-blog-troubleshooting-pk14-registration__container,
  .page-blog-troubleshooting-pk14-registration__content-wrapper,
  .page-blog-troubleshooting-pk14-registration__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-troubleshooting-pk14-registration__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-troubleshooting-pk14-registration__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-troubleshooting-pk14-registration__list {
    margin-left: 15px;
  }
}