.page-support {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #2D3748; /* Body background color from shared.css */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #1A202C; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
}

.page-support__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain image width */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__hero-content {
  max-width: 800px;
  margin-top: 20px;
}

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

.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__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A202C; /* Dark text for accent button */
  border: 2px solid #FFD700;
}

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

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

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

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

.page-support__button--tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

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

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-support__faq-section {
  background-color: #1A202C;
  padding: 80px 0;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

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

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

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #2D3748;
}

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

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

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

.page-support__contact-icon {
  width: 250px; /* Ensure images are >= 200px */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-support__resources-section {
  background-color: #1A202C;
  padding: 80px 0;
}

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

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

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

.page-support__resource-icon {
  width: 250px; /* Ensure images are >= 200px */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-support__resource-card-title a {
  color: #FFD700; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-support__resource-card-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-support__join-section {
  padding: 80px 0;
  background-color: #2D3748;
  text-align: center;
}

.page-support__join-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-support__join-image {
  width: 100%;
  max-width: 800px; /* Constrain image width */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

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

.page-support__join-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

@media (max-width: 768px) {
  .page-support__hero-container {
    padding: 40px 15px;
  }
  .page-support__hero-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: 100%;
  }
  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-support__faq-section, .page-support__contact-section, .page-support__resources-section, .page-support__join-section {
    padding: 60px 0;
  }
  .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, .page-support__resource-icon {
    width: 200px; /* Minimum size for content images */
    height: 150px;
  }
  .page-support__contact-card-title, .page-support__resource-card-title {
    font-size: 1.6em;
  }
  .page-support__join-title {
    font-size: 2em;
  }
  .page-support__join-description {
    font-size: 1em;
  }

  /* Mobile specific image overflow prevention */
  .page-support__hero-image,
  .page-support__contact-icon,
  .page-support__resource-icon,
  .page-support__join-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-support {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__join-title {
    font-size: 1.8em;
  }
  .page-support__faq-list, .page-support__contact-methods, .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
}