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

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A1931; /* Main color as background for hero section */
  color: #f0f0f0;
  padding: 0;
  text-align: center;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-support__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #0A1931; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section,
.page-support__call-to-action {
  padding: 60px 0;
}

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

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

.page-support__faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-support__faq-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0A1931;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__faq-link {
  display: inline-block;
  color: #E02B2B; /* Emphasis color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #FFD700;
}

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

.page-support__contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__card-text {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.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-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-support__resource-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__resource-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-support__resource-title a {
  color: #0A1931;
  text-decoration: none;
  font-weight: bold;
}

.page-support__resource-title a:hover {
  color: #FFD700;
}

.page-support__resource-text {
  font-size: 0.95em;
  color: #666666;
}

.page-support__call-to-action {
  background-color: #0A1931;
  color: #f0f0f0;
  text-align: center;
  padding: 80px 20px;
}

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

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

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

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

.page-support__button--primary {
  background-color: #FFD700; /* Gold accent for primary action */
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  color: #0A1931;
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-support__button--card {
  background-color: #E02B2B; /* Emphasis color for card buttons */
  color: #ffffff;
  border: 2px solid #E02B2B;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: auto; /* Push button to bottom */
}

.page-support__button--card:hover {
  background-color: #c72424;
  border-color: #c72424;
}

.page-support__button--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

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

@media (max-width: 768px) {
  .page-support__main-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: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__contact-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__hero-content {
    width: 90%;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile specific image sizing */
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-item {
    padding: 20px;
  }
  .page-support__cta-title {
    font-size: 1.6em;
  }
}