.page-index-brand-value {
  color: #333333;
  background-color: #FFFFFF; /* Assuming light body background for contrast */
}

.page-index-brand-value__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Minimum height for hero section */
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content readability */
}

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

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

.page-index-brand-value__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-index-brand-value__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-index-brand-value__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-index-brand-value__btn--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-index-brand-value__btn--register:hover {
  background-color: #E0E0E0;
  color: #000000;
}

.page-index-brand-value__btn--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index-brand-value__btn--login:hover {
  background-color: #E6A734;
  color: #000000;
}

.page-index-brand-value__section-padding {
  padding: 80px 20px;
}

.page-index-brand-value__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-brand-value__section-title {
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-index-brand-value__section-title--light {
  color: #FFFFFF;
}