.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #FFFFFF;
}

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

.page-support__dark-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  padding: 80px 0;
}

.page-support__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-support__hero-section {
  padding-top: var(--header-offset, 120px);
  text-align: center;
  padding-bottom: 60px;
}

.page-support__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  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__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure responsiveness for buttons */
}

.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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

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

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

.page-support__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 25px;
  color: inherit; /* Inherit color from section for contrast */
}

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

.page-support__feature-grid,
.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-support__feature-item,
.page-support__contact-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-support__dark-section .page-support__feature-item,
.page-support__dark-section .page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-support__feature-item:hover,
.page-support__contact-card:hover {
  transform: translateY(-10px);
}

.page-support__feature-icon,
.page-support__contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%; /* Make icons round */
  object-fit: cover;
}

.page-support__feature-title,
.page-support__contact-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: inherit;
}

.page-support__feature-text,
.page-support__contact-text {
  font-size: 1em;
  color: inherit;
}

.page-support__issue-category {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

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

.page-support__issue-list {
  list-style: none;
  padding: 0;
}

.page-support__issue-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-support__issue-list li strong {
  color: #ffffff;
}

.page-support__issue-list li::before {
  content: '•';
  color: #FFFF00; /* Yellow for bullet points */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-support__contact-card .page-support__btn-primary,
.page-support__contact-card .page-support__btn-secondary {
  margin-top: 20px;
}

.page-support__responsible-list,
.page-support__security-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support__responsible-list li,
.page-support__security-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #ffffff;
}

.page-support__responsible-list li strong,
.page-support__security-list li strong {
  color: #FFFF00;
}

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

.page-support__faq-section {
  padding-bottom: 80px;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

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

.page-support__faq-item-title {
  margin: 0;
  color: #ffffff;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
  /* content: '−'; Handled by JS */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1em;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
  padding-top: 0;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

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

  .page-support__hero-description,
  .page-support__section-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.9em;
  }

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

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

  .page-support__feature-item,
  .page-support__contact-card,
  .page-support__issue-category,
  .page-support__responsible-list li,
  .page-support__security-list li,
  .page-support__faq-item,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all image containers are responsive */
  .page-support__feature-item,
  .page-support__contact-card {
    overflow: hidden !important;
  }

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

/* Global image styles to prevent small icons and ensure responsiveness */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
  /* The specific feature/contact icons are illustrative and their actual generated size is defined by width/height attributes, but the image itself will be large */
}

/* Ensure no filter is used on images */
.page-support img {
  filter: none; /* Explicitly disable any potential filters */
}