.page-support {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: 60px; /* Add some padding below content */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle background effect */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

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

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

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.page-support__faq-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 0;
  min-width: 800px; /* Ensure image is not too small */
  min-height: 600px;
  width: 80%;
  height: auto;
}

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

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-support__more-faq {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.page-support__more-faq p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
}

.page-support__contact-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 0;
  min-width: 800px; /* Ensure image is not too small */
  min-height: 600px;
  width: 80%;
  height: auto;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #FFD700;
}

.page-support__contact-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-support__resources-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.page-support__resources-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 0;
  min-width: 800px; /* Ensure image is not too small */
  min-height: 600px;
  width: 80%;
  height: auto;
}

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

.page-support__resource-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-right: 5px solid #FFD700;
}

.page-support__resource-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

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

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

.page-support__resource-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
}

.page-support__cta-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  z-index: 0;
  min-width: 1200px; /* Ensure image is not too small */
  min-height: 800px;
  width: 100%;
  height: auto;
}

.page-support__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 80px 15px;
  }

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

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

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__button {
    width: 100%;
    min-width: unset;
  }

  .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__resources-grid {
    grid-template-columns: 1fr;
  }

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

  .page-support__faq-question, .page-support__contact-title, .page-support__resource-title {
    font-size: 1.3em;
  }

  .page-support__faq-image, .page-support__contact-image, .page-support__resources-image, .page-support__cta-image {
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
    max-width: 100%; /* Important for mobile content overflow */
    height: auto;
  }

  .page-support__hero-image {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within .page-support are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent inline-block issues */
  }

  .page-support__container {
    padding: 0 15px;
  }
}

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

  .page-support__hero-content {
    padding: 60px 10px;
  }

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

  .page-support__faq-question, .page-support__contact-title, .page-support__resource-title {
    font-size: 1.2em;
  }

  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}