.page-support {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff; /* Default body background is white */
  padding-top: var(--header-offset, 120px);
}

.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 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F2C94C;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-support__button {
  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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-support__button--primary {
  background-color: #F2C94C;
  color: #0A2342;
}

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

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

.page-support__button--secondary:hover {
  background-color: #F2C94C;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-support__button--tertiary {
  background-color: #0A2342;
  color: #F2C94C;
  padding: 10px 20px;
  font-size: 1em;
  border: 1px solid #0A2342;
}

.page-support__button--tertiary:hover {
  background-color: #1a3a60;
  border-color: #1a3a60;
  transform: translateY(-1px);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #444444;
  flex-grow: 1;
}

.page-support__faq-answer a {
  color: #0A2342;
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #F2C94C;
}

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

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

.page-support__contact-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__contact-icon {
  width: 250px;
  height: 167px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-support__additional-resources {
  padding: 80px 0;
  background-color: #f2f2f2;
}

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

.page-support__resource-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.page-support__resource-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__resource-title a {
  color: #0A2342;
  text-decoration: none;
}

.page-support__resource-title a:hover {
  color: #F2C94C;
  text-decoration: underline;
}

.page-support__resource-description {
  font-size: 0.95em;
  color: #666666;
  flex-grow: 1;
}

.page-support__contact-cta {
  padding: 80px 0;
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
}

.page-support__contact-cta-content {
  max-width: 900px;
}

.page-support__contact-cta .page-support__section-title {
  color: #F2C94C;
}

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

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

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

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 100px); /* Adjust for mobile header if needed, but var should handle it */
  }
  .page-support__hero-section {
    padding: 60px 20px;
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid,
  .page-support__contact-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__resource-item {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__contact-icon {
    width: 200px;
    height: 133px;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
  .page-support__resource-title {
    font-size: 1.1em;
  }
  .page-support__contact-cta .page-support__section-intro {
    margin-bottom: 30px;
  }
  /* Ensure images in content area do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-support__contact-icon {
    max-width: 100%; /* Ensure contact icons are responsive */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 40px 15px;
    min-height: 350px;
  }
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.85em;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__resource-item {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-title {
    font-size: 1.3em;
  }
  .page-support__contact-icon {
    width: 180px; /* Adjust for smaller screens */
    height: 120px;
  }
}