.page-support {
  color: #333333;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for the hero section */
}

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

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

.page-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

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

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

.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;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700; /* Gold */
  color: #008000; /* Dark green text */
  border: 2px solid #FFD700;
}

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.2em;
  color: #008000; /* Dark green */
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #008000; /* Dark green */
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__link {
  color: #DC143C; /* Deep red for links */
  text-decoration: none;
  font-weight: bold;
}

.page-support__link:hover {
  text-decoration: underline;
}

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

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

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

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

.page-support__contact-icon {
  width: 200px; /* Minimum size for content images */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #008000; /* Dark green */
  margin-bottom: 10px;
}

.page-support__card-description {
  color: #777777;
  margin-bottom: 20px;
}

.page-support__cta-section {
  background-color: #008000; /* Dark green background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__cta-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-support__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-support__cta-content .page-support__button--primary {
  background-color: #FFD700; /* Gold */
  color: #008000; /* Dark green text */
  border-color: #FFD700;
}

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

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

  .page-support__hero-description,
  .page-support__section-subtitle,
  .page-support__cta-description {
    font-size: 1em;
  }

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

  .page-support__hero-content {
    padding: 20px;
  }

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

  .page-support__button {
    width: 100%;
    padding: 12px 20px;
  }

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

  .page-support__contact-options {
    grid-template-columns: 1fr;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-support__hero-image,
  .page-support__contact-icon,
  .page-support__cta-image {
    max-width: 100%;
    height: auto;
  }

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

  /* All images within .page-support must be responsive */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.5em;
  }

  .page-support__hero-content {
    padding: 15px;
  }
}