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

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

.page-support__section {
  padding: 60px 0;
  text-align: center;
}

.page-support__dark-bg {
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #ffffff;
}

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section for contrast */
  line-height: 1.2;
}

.page-support__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-support__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: inherit;
  text-align: left;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-support__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-support__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #ffffff;
}

.page-support__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
  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: #1e87bb;
  border-color: #1e87bb;
}

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

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

/* Why Choose Section */
.page-support__why-choose {
  background-color: #f5f5f5;
  color: #333333;
}

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

.page-support__feature-item {
  text-align: center;
  padding: 30px;
}

.page-support__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: none; /* Removed default border */
}

.page-support__card:hover {
  transform: translateY(-5px);
}

.page-support__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-support__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Contact Methods Section */
.page-support__contact-methods {
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-support__contact-item {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  color: #ffffff;
}

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

.page-support__contact-text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 50px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #f5f5f5;
  color: #333333;
}

.page-support__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  text-align: left;
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* For details tag */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  list-style: none; /* For summary tag */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* For summary tag */
}

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

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

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

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

/* Security and Privacy Section */
.page-support__security-privacy {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-support__security-privacy .page-support__container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-support__security-privacy .page-support__text-content {
  flex: 1;
}

.page-support__security-privacy .page-support__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-support__security-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Feedback CTA Section */
.page-support__feedback-cta {
  background-color: #f5f5f5;
  color: #333333;
}

.page-support__center-text {
  text-align: center;
}

/* Final CTA Section */
.page-support__final-cta {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-support__final-cta .page-support__section-title,
.page-support__final-cta .page-support__section-intro {
  color: #ffffff;
}

.page-support__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero-image-wrapper {
    max-height: 500px;
  }
}

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

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

  .page-support__section {
    padding: 40px 0;
  }

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

  .page-support__description {
    font-size: 1em;
  }

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

  .page-support__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

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

  .page-support__security-privacy .page-support__container {
    flex-direction: column;
    text-align: center;
  }

  .page-support__security-privacy .page-support__text-content {
    order: 2;
  }

  .page-support__security-privacy .page-support__image-content {
    order: 1;
    margin-bottom: 30px;
  }

  .page-support__security-image {
    max-width: 100%;
  }

  .page-support__button-group {
    flex-direction: column;
    gap: 15px;
  }

  /* Force responsive images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Force responsive buttons */
  .page-support__cta-button,
  .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__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

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

@media (max-width: 480px) {
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__main-title {
    font-size: clamp(1.5em, 8vw, 2.2em);
  }
  .page-support__hero-image-wrapper {
    max-height: 250px;
  }
}