/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default background for the main content area */
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

/* Base container for content */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-support__hero-section,
.page-support__faq-section,
.page-support__guide-section,
.page-support__contact-section,
.page-support__policy-section,
.page-support__video-section,
.page-support__cta-final {
  padding: 80px 0;
  text-align: center;
}

.page-support__dark-section {
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-offset, 120px) + 60px); /* Adjust for header offset */
  padding-bottom: 60px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2; /* Subtle background image */
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-support__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section, either white or #333 */
}

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

/* Buttons */
.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.page-support__btn-primary {
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #017439;
}

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

.page-support__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Primary brand color */
  border: 2px solid #017439;
}

.page-support__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
}

/* Specific button styles for Register/Login if needed, ensuring contrast */
.page-support__btn-register,
.page-support__btn-login {
  background-color: #C30808; /* Custom red for register/login */
  color: #FFFFFF; /* ENSURING WCAG AA CONTRAST, OVERRIDING #FFFF00 */
  border: 2px solid #C30808;
}

.page-support__btn-register:hover,
.page-support__btn-login:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-support__btn-centered {
  margin-left: auto;
  margin-right: auto;
  display: block; /* Make it block to center with margin auto */
  width: fit-content; /* Adjust width to content */
}

/* FAQ Section */
.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}