.page-support {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Body background is white */
}

.page-support__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-support__dark-section {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for dark background */
  padding: 60px 20px;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding */
  text-align: center;
  overflow: hidden;
}

.page-support__image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

.page-support__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__section {
  padding: 60px 20px;
  border-bottom: 1px solid #f0f0f0;
}

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

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__sub-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  font-weight: 600;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-support__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__text-block--note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: inherit; /* Inherits color from parent section */
}

.page-support__highlight {
  font-weight: 700;
  color: #26A9E0;
}

.page-support__dark-section .page-support__highlight {
  color: #ffffff;
}

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

.page-support__dark-section .page-support__text-link {
  color: #ffffff;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  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: #1e87c0;
  border-color: #1e87c0;
}

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

.page-support__dark-section .page-support__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-support__dark-section .page-support__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #f0f0f0;
}

.page-support__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1e87c0;
  border-color: #1e87c0;
}

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

.page-support__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
  text-align: center;
}

.page-support__card-text {
  font-size: 0.95em;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: justify;
}

.page-support__card-image {
  width: 100%;
  min-width: 200px;
  min-height: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-top: 20px;
  object-fit: cover;
}

.page-support__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  padding-left: 0;
}

.page-support__list-item {
  margin-bottom: 10px;
}

.page-support__faq-list {
  margin-top: 30px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details summary */
}

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

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #eaf6ff; /* Lighter background when open */
  border-bottom: 1px solid #26A9E0;
  color: #26A9E0;
}

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

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.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-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

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

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

/* Ensure all images meet minimum size requirements */
.page-support img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-support__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-support__description {
    font-size: 1em;
    padding: 0 10px;
  }

  .page-support__section,
  .page-support__dark-section {
    padding: 40px 15px;
  }

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

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

  .page-support__sub-title {
    font-size: 1.4em;
  }

  .page-support__text-block {
    font-size: 0.95em;
  }

  .page-support__grid-container {
    grid-template-columns: 1fr;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin: 8px 0 !important; /* Adjust margin for stacked buttons */
  }

  .page-support__policy-links {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__image-container,
  .page-support__hero-section,
  .page-support__contact-methods,
  .page-support__policy-links {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Ensure content area images meet minimum width on desktop */
.page-support__card-image {
  width: 100%; /* Ensures it fills card width */
  max-width: 100%; /* Prevents overflow */
  height: auto;
}

/* No filter properties allowed */
.page-support img {
  filter: none; /* Ensure no filters are applied */
}

.page-support__hero-section .page-support__hero-content {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  padding: 0 15px;
}

.page-support__hero-section .page-support__btn-primary {
  margin-top: 15px;
}