/* style/support.css */
/* Body background color is #0a0a0a (dark), so use light text. */
.page-support {
  color: #ffffff; /* Default text color for the page */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure the main content area has the correct dark background */
}

.page-support__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

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

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

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

.page-support__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-support__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-support__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-support__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-support__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-support__btn-lg {
  padding: 18px 35px;
  font-size: 1.1em;
}

/* General Info Section */
.page-support__general-info {
  padding: 60px 0;
}

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
  color: #26A9E0;
}

.page-support__faq-question::-webkit-details-marker {
  display: none;
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  color: #f0f0f0;
}

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

.page-support__link-more {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__link-more:hover {
  color: #1f8ec7;
}

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

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
}

.page-support__guide-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 1.3em;
  font-weight: bold;
  padding: 15px 20px 10px;
}

.page-support__guide-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
}

.page-support__guide-description {
  font-size: 0.95em;
  padding: 0 20px 15px;
  color: #f0f0f0;
}

/* Video Tutorial Section */
.page-support__video-tutorial-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 30px auto;
  max-width: 1000px; /* Max width for video */
  background-color: #000;
  border-radius: 8px;
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  display: block;
}

.page-support__video-cta {
  margin-top: 20px;
}

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

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce minimum size for images */
  min-height: 200px;
}

.page-support__contact-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-support__contact-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Policies Section */
.page-support__policies-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-support__policy-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 15px;
  border: 1px solid #26A9E0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-support__policy-link:hover {
  background-color: #26A9E0;
  color: #ffffff;
  text-decoration: none;
}

/* Conclusion Section */
.page-support__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__hero-section {
    padding-bottom: 40px;
  }

  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-support__container,
  .page-support__hero-section,
  .page-support__general-info,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__video-tutorial-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }

  .page-support__hero-section {
    padding-bottom: 30px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-support__intro-text {
    font-size: 1em;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    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__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-support__faq-answer {
    padding: 0 20px 15px;
  }

  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__guide-image,
  .page-support__contact-icon {
    height: auto !important; /* Allow height to adjust */
    max-width: 100% !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }

  /* Image responsiveness for all img tags */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__video-tutorial-section {
    padding-top: 10px !important;
  }

  .page-support__policy-links {
    flex-direction: column;
    gap: 10px;
  }
  .page-support__policy-link {
    width: 100%;
  }
}