.page-support {
  color: #333333; /* Dark text for default light body background */
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-support__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-support__button--primary {
  background-color: #FFD700;
  color: #4B0082;
  border: 2px solid #FFD700;
}

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

.page-support__button--secondary {
  background-color: #4B0082;
  color: #ffffff;
  border: 2px solid #4B0082;
}

.page-support__button--secondary:hover {
  background-color: #3a0066;
  border-color: #3a0066;
}

.page-support__button--outline {
  background-color: transparent;
  color: #4B0082;
  border: 2px solid #4B0082;
}

.page-support__button--outline:hover {
  background-color: #4B0082;
  color: #FFD700;
}

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

.page-support__section-title {
  font-size: 2.5rem;
  color: #4B0082;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-support__faq-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  border-left: 5px solid #FFD700;
}

.page-support__faq-question {
  font-size: 1.3rem;
  color: #4B0082;
  margin-bottom: 10px;
}

.page-support__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.page-support__faq-answer a {
  color: #4B0082;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

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

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

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

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__contact-title {
  font-size: 1.5rem;
  color: #4B0082;
  margin-bottom: 10px;
}

.page-support__contact-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
}

.page-support__resources-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

.page-support__resource-card {
  display: block;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-support__resource-title {
  font-size: 1.4rem;
  color: #4B0082;
  margin: 20px 20px 10px 20px;
}

.page-support__resource-text {
  font-size: 1rem;
  color: #666666;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px);
  }
  .page-support__hero-title {
    font-size: 2.5rem;
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__section-title {
    font-size: 2rem;
  }
  .page-support__section-description {
    font-size: 0.95rem;
  }
  .page-support__faq-question {
    font-size: 1.2rem;
  }
  .page-support__contact-methods, .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-icon, .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-image, .page-support__faq-item img, .page-support__contact-card img, .page-support__resource-card img {
    max-width: 100%;
    height: auto;
  }
  .page-support__container {
    padding: 30px 15px;
  }
}