.page-support {
  color: #ffffff; /* Body background #0a0a0a (dark), so text is light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.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;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  position: relative;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image slightly for visual flow */
  background-color: rgba(10, 10, 10, 0.85); /* Dark background for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.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-text {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__btn-text:hover {
  color: #1a7eb3;
  text-decoration: underline;
}

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

.page-support__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

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

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

.page-support__app-download-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.page-support__technical-support-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-support__technical-support-section .page-support__section-title,
.page-support__technical-support-section .page-support__section-description {
  color: #ffffff;
}

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

.page-support__support-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on brand color */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-support__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

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

.page-support__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__policies-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-support__policy-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__app-section {
  padding: 60px 0;
  background-color: #1c1c1c; /* Slightly lighter dark background */
}

.page-support__app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__app-info {
  flex: 1;
}

.page-support__app-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-support__app-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-support__app-features li::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-support__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-support__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center image */
}

.page-support__why-choose-us-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-support__why-choose-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-support__why-choose-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__why-choose-list li p {
  margin: 0;
}

.page-support__why-choose-list li strong {
  color: #26A9E0;
}

.page-support__cta-final {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-content {
    margin-top: -50px;
    padding: 20px;
    max-width: 95%;
  }

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

  .page-support__hero-description {
    font-size: 1em;
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

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

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-support__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-support__support-card,
  .page-support__policy-card {
    padding: 25px;
  }

  .page-support__card-title {
    font-size: 1.3em;
  }

  .page-support__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-support__app-image-wrapper {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }

  .page-support__app-features li {
    justify-content: center;
    text-align: left;
  }

  /* Mobile responsive for all images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for all containers */
  .page-support__container,
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__technical-support-section,
  .page-support__policies-section,
  .page-support__app-section,
  .page-support__why-choose-us-section,
  .page-support__support-grid,
  .page-support__policy-cards,
  .page-support__app-content,
  .page-support__cta-buttons,
  .page-support__app-download-links {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-support__hero-image-wrapper {
    max-height: 400px;
  }

  .page-support__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
}

/* Ensure all content area images are at least 200px */
.page-support__hero-image,
.page-support__card-image,
.page-support__app-image {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-support img {
  filter: none;
}

/* Specific padding for sections to avoid overflow on mobile */
.page-support__faq-section,
.page-support__technical-support-section,
.page-support__policies-section,
.page-support__app-section,
.page-support__why-choose-us-section {
  padding-left: 0;
  padding-right: 0;
}

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