/* style/resources-troubleshooting-common-issues-with-99ok.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-login: #EA7C07;
  --background-white: #FFFFFF;
  --black: #000000;
}

.page-resources-troubleshooting-common-issues-with-99ok {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-white); /* Assuming body background is light */
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, darken(var(--primary-color), 15%) 100%);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}

.page-resources-troubleshooting-common-issues-with-99ok__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Allowed for subtle effect, not color change */
}

.page-resources-troubleshooting-common-issues-with-99ok__content-area,
.page-resources-troubleshooting-common-issues-with-99ok__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-resources-troubleshooting-common-issues-with-99ok__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-troubleshooting-common-issues-with-99ok__section-title--light {
  color: var(--text-light);
}

.page-resources-troubleshooting-common-issues-with-99ok__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-troubleshooting-common-issues-with-99ok__paragraph--light {
  color: var(--text-light);
}

.page-resources-troubleshooting-common-issues-with-99ok__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-troubleshooting-common-issues-with-99ok__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-troubleshooting-common-issues-with-99ok__cta-buttons--center {
  justify-content: center;
}

.page-resources-troubleshooting-common-issues-with-99ok__btn-primary,
.page-resources-troubleshooting-common-issues-with-99ok__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-troubleshooting-common-issues-with-99ok__btn-primary {
  background-color: var(--btn-login);
  color: var(--text-light);
  border: 2px solid var(--btn-login);
}

.page-resources-troubleshooting-common-issues-with-99ok__btn-primary:hover {
  background-color: darken(var(--btn-login), 10%);
  border-color: darken(var(--btn-login), 10%);
}

.page-resources-troubleshooting-common-issues-with-99ok__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-troubleshooting-common-issues-with-99ok__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-container {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-question:hover {
  color: darken(var(--primary-color), 10%);
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-item.active .page-resources-troubleshooting-common-issues-with-99ok__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  color: var(--text-dark);
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-item.active .page-resources-troubleshooting-common-issues-with-99ok__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px;
}

.page-resources-troubleshooting-common-issues-with-99ok__faq-answer p {
  margin-bottom: 15px;
}

.page-resources-troubleshooting-common-issues-with-99ok__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-troubleshooting-common-issues-with-99ok__contact-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.5;
  color: var(--text-dark);
}

.page-resources-troubleshooting-common-issues-with-99ok__contact-item strong {
  color: var(--primary-color);
}

.page-resources-troubleshooting-common-issues-with-99ok__tips-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-resources-troubleshooting-common-issues-with-99ok__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.page-resources-troubleshooting-common-issues-with-99ok__tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-troubleshooting-common-issues-with-99ok__tip-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-troubleshooting-common-issues-with-99ok__tip-title {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-resources-troubleshooting-common-issues-with-99ok__hero-title {
    font-size: 2.2em;
  }
  .page-resources-troubleshooting-common-issues-with-99ok__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-troubleshooting-common-issues-with-99ok {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__hero-title {
    font-size: 1.8em;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__hero-description {
    font-size: 1em;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__btn-primary,
  .page-resources-troubleshooting-common-issues-with-99ok__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__content-area,
  .page-resources-troubleshooting-common-issues-with-99ok__conclusion-section,
  .page-resources-troubleshooting-common-issues-with-99ok__tips-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__section-title {
    font-size: 1.5em;
  }

  .page-resources-troubleshooting-common-issues-with-99ok img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__faq-question {
    font-size: 1.1em;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__faq-answer {
    padding: 0 10px;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__faq-item.active .page-resources-troubleshooting-common-issues-with-99ok__faq-answer {
    padding: 10px;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__tip-card {
    padding: 20px;
  }

  .page-resources-troubleshooting-common-issues-with-99ok__contact-item {
    padding: 15px;
  }
}