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

/* Header offset for the first section */
.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh; /* Adjust as needed */
  background-color: #017439; /* Brand green for hero */
  color: #FFFFFF;
  padding-bottom: 60px;
}

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  display: block;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Yellow for prominence */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
}

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

.page-support__btn-primary {
  background: #C30808; /* Red for action */
  color: #FFFF00; /* Yellow text for contrast */
  border: 2px solid #C30808;
}

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

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

.page-support__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-support__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

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

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than pure black for sections */
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333;
}

/* Why Choose Us Section */
.page-support__why-choose-us {
    padding: 80px 0;
}

.page-support__why-choose-us .page-support__section-title {
    color: #017439; /* Brand green */
}

.page-support__why-choose-us .page-support__section-intro {
    color: #555555;
}

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

.page-support__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #333333;
}

.page-support__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

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

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__faq-section .page-support__section-title {
    color: #FFFF00;
}

.page-support__faq-section .page-support__section-intro {
    color: #e0e0e0;
}

.page-support__faq-list {
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #1a1a1a;
  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;
  cursor: pointer;
  background-color: #2a2a2a;
  font-size: 1.1em;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  list-style: none; /* For details/summary */
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg); /* Rotate for minus sign */
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #cccccc;
}

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

.page-support__faq-image-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Channels Section */
.page-support__channels-section {
    padding: 80px 0;
}

.page-support__channels-section .page-support__section-title {
    color: #017439;
}

.page-support__channels-section .page-support__section-intro {
    color: #555555;
}

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

.page-support__channel-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-icon {
  width: 200px; /* Base size */
  height: 200px; /* Base size */
  object-fit: contain; /* To prevent distortion if image is not square */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__channel-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
}

.page-support__channel-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-support__guides-section .page-support__section-title {
    color: #FFFF00;
}

.page-support__guides-section .page-support__section-intro {
    color: #e0e0e0;
}

.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: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-support__guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

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

.page-support__video-wrapper {
  margin-top: 60px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__video-title {
  font-size: 2em;
  color: #FFFF00;
  margin-bottom: 15px;
}

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

.page-support__video-link {
    display: block; /* Ensure the link wraps the video */
    width: 100%;
    max-width: 1000px; /* Max width for the video container */
    margin: 0 auto;
}

.page-support__video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}

/* Security Section */
.page-support__security-section {
    padding: 80px 0;
}

.page-support__security-section .page-support__section-title {
    color: #017439;
}

.page-support__security-section .page-support__section-intro {
    color: #555555;
}

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

.page-support__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #333333;
}

.page-support__security-icon {
  width: 200px; /* Base size */
  height: 200px; /* Base size */
  object-fit: contain; /* To prevent distortion if image is not square */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__security-subtitle {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-support__security-text {
  font-size: 1em;
  color: #666666;
}

.page-support__security-links {
    margin-top: 50px;
    text-align: center;
}

.page-support__text-link {
    color: #017439;
    text-decoration: underline;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__text-link:hover {
    color: #004d2b;
}

/* Feedback Section */
.page-support__feedback-section {
    padding: 80px 0;
    text-align: center;
}

.page-support__feedback-section .page-support__section-title {
    color: #FFFF00;
}

.page-support__feedback-section .page-support__section-intro {
    color: #e0e0e0;
}

/* Final CTA Section */
.page-support__cta-final {
    padding: 80px 0;
    text-align: center;
}

.page-support__cta-final .page-support__section-title {
    color: #017439;
}

.page-support__cta-final .page-support__section-intro {
    color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

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

  .page-support__hero-section {
    min-height: 60vh;
  }

  .page-support__hero-title {
    font-size: 2.2em;
  }

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

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

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

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

  .page-support__section-intro {
    font-size: 1em;
  }

  .page-support__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Images and Videos Responsive */
  .page-support img,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image-wrapper,
  .page-support__faq-image-wrapper,
  .page-support__video-wrapper,
  .page-support__channel-card,
  .page-support__guide-card,
  .page-support__security-item,
  .page-support__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-support__faq-list {
      max-width: 100%;
  }

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

  .page-support__video-section {
    padding-top: 40px !important; /* Adjust if needed, hero has primary offset */
  }

  .page-support__channels-grid,
  .page-support__guides-grid,
  .page-support__security-features,
  .page-support__features-grid {
      grid-template-columns: 1fr;
  }

  .page-support__channel-icon,
  .page-support__security-icon {
    width: 100% !important; /* Scale to container */
    max-width: 200px !important; /* But not larger than 200px if container is huge */
    height: auto !important; /* Maintain aspect ratio */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
}

/* Ensure images don't have filters */
.page-support img {
    filter: none !important;
}

/* Color contrast fixes if needed */
.page-support p,
.page-support li {
    color: inherit; /* Inherit from parent, which is set to #ffffff or #333333 */
}

.page-support__card, .page-support__feature-item, .page-support__channel-card, .page-support__security-item {
  background: #ffffff;
  color: #333333;
}

.page-support__card h3, .page-support__feature-title, .page-support__channel-title, .page-support__security-subtitle {
  color: #017439;
}

.page-support__card p, .page-support__feature-text, .page-support__channel-description, .page-support__security-text {
  color: #666666;
}

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

.page-support__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}