/* style/support.css */
/* Body background is #0a0a0a (dark), so use light text. */

.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-support__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.page-support__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Color Contrast Specifics */
.page-support__dark-bg {
  background-color: #0a0a0a; /* Ensure dark background for this section */
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-support__light-bg .page-support__section-title {
  color: #26A9E0;
}

.page-support__dark-bg .page-support__section-title {
  color: #ffffff;
}

.page-support__btn-primary {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-support__btn-primary:hover {
  background-color: #1e87c0;
}

.page-support__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #26A9E0;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #26A9E0;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-support__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* FAQ Section */
.page-support__faq-section {
  padding-bottom: 60px;
}

.page-support__faq-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-support__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Light transparent background on dark body */
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #26A9E0;
  list-style: none; /* Hide default marker */
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-support__faq-question {
  font-size: 1.1rem;
  font-weight: bold;
  color: #26A9E0;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  margin-left: 10px;
}

.page-support__faq-answer {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__faq-link:hover {
  color: #1e87c0;
}

.page-support__faq-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Guides Section */
.page-support__guides-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-support__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__card {
  background: rgba(255, 255, 255, 0.08); /* Light transparent background on dark body */
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-support__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-support__guide-list {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: decimal;
  color: #f0f0f0;
}

.page-support__guide-list li {
  margin-bottom: 8px;
}

.page-support__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__text-link:hover {
  color: #1e87c0;
}

.page-support__guide-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-support__security-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-support__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.page-support__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__feature-item p {
  font-size: 1rem;
  line-height: 1.5;
}

.page-support__security-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__security-cta {
  margin-top: 40px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.page-support__contact-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__method-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-align: center;
}

.page-support__method-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__method-item p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-support__contact-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Community Section */
.page-support__community-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-support__community-links {
  margin-top: 40px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-support__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-support__hero-content {
    padding: 10px;
    max-width: 100%;
  }

  .page-support__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-support__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }

  .page-support__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__faq-item,
  .page-support__card,
  .page-support__feature-item,
  .page-support__method-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px;
  }

  .page-support__faq-list,
  .page-support__guide-cards,
  .page-support__security-features,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__faq-question,
  .page-support__card-title,
  .page-support__feature-title,
  .page-support__method-title {
    font-size: 1.2rem;
  }

  .page-support__security-cta,
  .page-support__community-links {
    flex-direction: column;
    gap: 15px;
  }
}