.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Inherit from body, which is dark */
}

.page-support__section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

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

.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__section-intro {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css already handles body padding-top */
  margin-top: 0;
  text-align: center;
}

.page-support__hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  z-index: 0;
}

.page-support__hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4); /* Additional overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
}

.page-support__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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