.page-support {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-support__hero-section {
  background-color: #003366; /* Deep blue background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-support__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__hero-cta-button {
  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;
  font-size: 1.1em;
}

.page-support__hero-cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__hero-cta-button--primary:hover {
  background-color: #e6b800;
}

.page-support__hero-cta-button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-support__hero-cta-button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%); /* Allowed for subtle background effect, not changing original color */
}

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

.page-support__faq-section {
  background-color: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.page-support__faq-title,
.page-support__contact-title,
.page-support__resources-title,
.page-support__cta-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.page-support__faq-intro,
.page-support__contact-intro,
.page-support__resources-intro,
.page-support__cta-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.page-support__faq-list {
  flex: 2;
  min-width: 300px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

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

.page-support__faq-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-support__faq-button:hover {
  background-color: #e6b800;
}

.page-support__faq-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-support__contact-section {
  background-color: #ffffff;
  text-align: center;
}

.page-support__contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-support__contact-method-card {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-method-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-support__contact-method-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__contact-method-button:hover {
  background-color: #002244;
}

.page-support__contact-image-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-support__resources-section {
  background-color: #f9f9f9;
}

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

.page-support__resource-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__resource-card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

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

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

.page-support__resource-card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__resource-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__cta-section {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__cta-title {
  color: #FFCC00;
  font-size: 3em;
  margin-bottom: 20px;
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__cta-button--primary:hover {
  background-color: #e6b800;
}

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

.page-support__cta-button--secondary:hover {
  background-color: #ffffff;
  color: #003366;
}

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

.page-support__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(70%); /* Allowed for subtle background effect, not changing original color */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__faq-section {
    flex-direction: column;
    align-items: center;
  }
  .page-support__faq-list,
  .page-support__faq-image-wrapper {
    width: 100%;
    flex: none;
  }
  .page-support__faq-image {
    max-width: 600px;
  }
  .page-support__contact-methods {
    flex-direction: column;
    align-items: center;
  }
  .page-support__contact-method-card {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__hero-cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__resources-title,
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__faq-intro,
  .page-support__contact-intro,
  .page-support__resources-intro,
  .page-support__cta-description {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-method-card {
    width: 90%;
  }
  .page-support__cta-button {
    width: 90%;
    max-width: 300px;
  }
  /* Mobile content image overflow prevention */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__resource-card-image,
  .page-support__cta-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-support__hero-image-wrapper, .page-support__cta-image-wrapper {
    display: none;
  }
}