/* style/support.css */
.page-support {
  color: #ffffff;
  background-color: var(--black-color, #000000);
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  text-align: center;
  overflow: hidden;
  background-color: #26A9E0; /* Fallback if image fails */
}

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
}