.page-support {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-support__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFC107; /* Auxiliary color for highlight */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

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

.page-support__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFC107; /* Auxiliary color */
  border: 2px solid #FFC107;
}

.page-support__button--secondary:hover {
  background-color: #FFC107;
  color: #333333;
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-support__faqs-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
  transition: transform 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-support__faq-answer {
  font-size: 1.05em;
  color: #333333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust based on max expected content */
  padding-top: 20px;
}

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

.page-support__button--inline {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-support__contact-options-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-support__contact-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
  width: 250px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 5px;
}

.page-support__card-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-support__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-support__button--card {
  background-color: #FFC107;
  color: #333333;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
}

.page-support__button--card:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-support__additional-resources-section {
  padding: 60px 0;
  background-color: #f0f7ff; /* Light blue background */
}

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

.page-support__resource-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-support__resource-card-title {
  font-size: 1.6em;
  color: #007BFF;
  padding: 20px 25px 10px;
}

.page-support__resource-card-title a {
  text-decoration: none;
  color: inherit;
}

.page-support__resource-card-title a:hover {
  text-decoration: underline;
}

.page-support__resource-card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 25px 25px;
}

.page-support__final-cta-section {
  padding: 80px 0;
  background-color: #007BFF; /* Primary brand color background */
  color: #ffffff;
  text-align: center;
}

.page-support__final-cta-section .page-support__section-title {
  color: #FFC107; /* Auxiliary color for title on dark background */
}

.page-support__final-cta-section .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-support__final-cta-section .page-support__button--primary {
  background-color: #FFC107;
  color: #333333;
  border-color: #FFC107;
}

.page-support__final-cta-section .page-support__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-support__final-cta-section .page-support__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-support__final-cta-section .page-support__button--secondary:hover {
  background-color: #ffffff;
  color: #007BFF;
}

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

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

  .page-support__contact-cards,
  .page-support__resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

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

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

  .page-support__hero-description,
  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-support__faq-item {
    padding: 20px;
  }

  .page-support__faq-question {
    font-size: 1.3em;
  }

  .page-support__contact-icon {
    width: 200px; /* Ensure min size for mobile */
    height: 150px; /* Ensure min size for mobile */
  }

  .page-support__contact-cards,
  .page-support__resource-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  /* Specific overrides for content area images to ensure min-size for relevant elements */
  .page-support__contact-icon,
  .page-support__resource-image {
    min-width: 200px;
    min-height: 150px;
  }
}

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

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

  .page-support__button {
    width: 90%;
  }

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

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__faq-answer {
    font-size: 0.95em;
  }
}