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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Account for 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;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

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

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

.page-support__hero-button {
  display: inline-block;
  background-color: #FF4500; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__hero-button:hover {
  background-color: #e13c00;
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #1E90FF; /* Auxiliary brand color */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

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

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

.page-support__faq-section {
  padding: 60px 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: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.5em;
  color: #FF4500; /* Main brand color */
  margin-bottom: 15px;
}

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__faq-link {
  display: inline-block;
  color: #1E90FF; /* Auxiliary brand color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #e6f0ff; /* Light blue background */
}

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

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

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

.page-support__contact-icon {
  width: 250px; /* Minimum 200px */
  height: 167px; /* Maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #FF4500; /* Main brand color */
  margin-bottom: 10px;
}

.page-support__contact-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary brand color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
  background-color: #007bff;
}

.page-support__resources-section {
  padding: 80px 0;
}

.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.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__resource-title {
  font-size: 1.6em;
  color: #FF4500; /* Main brand color */
  padding: 20px;
  margin-bottom: 0;
}

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

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

.page-support__resource-description {
  font-size: 0.95em;
  line-height: 1.6;
  padding: 0 20px 20px;
}

.page-support__cta-section {
  background: linear-gradient(90deg, #FF4500, #FFD700); /* Gradient using main color and gold */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

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

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

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

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

.page-support__cta-button--primary {
  background-color: #1E90FF; /* Auxiliary brand color */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-support__cta-button--primary:hover {
  background-color: #007bff;
  border-color: #007bff;
  transform: translateY(-2px);
}

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

.page-support__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

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

  .page-support__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
  }

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

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

  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-support__section-intro {
    font-size: 0.95em;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 25px;
  }

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

  .page-support__contact-icon {
    width: 200px; /* Enforce min 200px */
    height: 133px;
  }

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

  .page-support__resource-image {
    height: 200px;
  }

  .page-support__resource-title {
    font-size: 1.4em;
  }

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

  .page-support__cta-description {
    font-size: 1em;
  }

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

  .page-support__cta-button {
    width: 100%;
    max-width: 300px; /* Limit width for small screens */
  }

  /* Mobile content overflow prevention */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-support__cta-title {
    font-size: 1.8em;
  }

  .page-support__hero-container {
    padding: 30px 15px;
  }
}