.sustainability-banner {
  width: 100%;
  height: 50vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 17vh;
}

.sustainability-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--sustainability-banner-url);
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  z-index: -1;
}

.sustainability-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  color: white;
  overflow: hidden;
}

.sustainability-banner-content h2 {
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  word-wrap: break-word;
  hyphens: auto;
  flex-shrink: 1;
}

.sustainability-banner-content h3 {
  font-family: "HelveticaNeueLT", Helvetica, Arial, sans-serif !important;
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  flex-shrink: 1;
}

.sustainability-banner-btn {
  position: relative;
  z-index: 1;
  color: white;
  border: none;
  border-radius: 0 !important;
  font-size: var(--font-sm);
  overflow: hidden;
  background: rgba(36, 82, 53, 0.3);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  padding: 0.375rem 0.75rem;
  white-space: nowrap;
  flex-shrink: 1;
}

.sustainability-banner-btn:hover {
  background: rgba(31, 80, 19, 0.2);
  backdrop-filter: blur(15px);
}

.sustainability-container {
  margin-top: 8vh;
  margin-bottom: 4vh;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.sustainability-text-wrapper {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8vh;
}

.sustainability-text {
  color: var(--grey-dark);
}


/* Mobile Styles */
@media (max-width: 576px) {
  .sustainability-banner {
    margin-top: 11vh;
  }

  .sustainability-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }

  .sustainability-container {
    margin-bottom: 8vh;
  }

}

/* Mobile Landscape and Tablets */
@media (min-width: 576px) and (max-width: 768px) {
  .sustainability-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }

    .sustainability-container {
    margin-bottom: 8vh;
  }
}
