.hero-centered {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    overflow: hidden;
}
.hero-centered h1 {
    text-align: center;
    margin: auto;
    max-width: 800px;
}
.section-title {
  text-align: center;
  max-width: 890px;
  margin: 0 auto 10px auto;
  text-transform: Uppercase;
}
.section-description {
  text-align: center;
  max-width: 890px;
  margin: 20px auto 0;
}

.container {
  width: 100%;
  max-width: 1290px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.decor-image {
  display: flex;
  position: absolute;
  z-index: 0;
  display: none;

    @media screen and (min-width: 1000px) {
      display: block;
    }

    &.upper-left {
      top: 0;
      left: 0;
    }
    &.upper-right {
      top: 0;
      right: 0;
    }
    &.lower-left {
      bottom: 0;
      left: 0;
    }
    &.lower-right {
      bottom: 0;
      right: 0;
    }
}



    .button-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
    }

    .button {
        width: 90%;
        min-width: 174px;
        min-height: 56px;
        max-width: 300px;
        font-size: 18px;
        border-radius: 4px;
        text-decoration: none;
        padding: 10px 40px;
        display: flex;
        justify-content: center;
        align-items: center;

        @media screen and (min-width: 768px) {
            width: fit-content;
        }

        &.button-primary {
            background-color: #0f8461;
            border: 2px solid #0f8461;
            color: #ffffff;

            &:hover {
                background-color: #0c6a4e;
                border-color: #0c6a4e;
            }
        }

        &.button-secondary {
            background-color: #ffffff;
            border: 2px solid #0f8461;
            color: #0f8461;

            &:hover {
                background-color: #0f8461;
                color: #ffffff;
            }
        }
    }

    .badge-list {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin: 50px auto 0;
        width: 80%;

        @media screen and (min-width: 1000px) {
            gap: 18px;
            width: 100%;
        }
    }

    .badge-item {
        width: 90px;

        @media screen and (min-width: 768px) {
            width: 105px;
        }

        img {
            width: 100%;
            height: auto;
        }
    }
    .badge-item-larger {
        width: 78px;

        @media screen and (min-width: 768px) {
            width: 125px;
        }
        @media screen and (max-width: 455px) {
            width: 90px;
        }

        img {
            width: 100%;
            height: auto;
        }
    }

    .bottom-decor {
        bottom: -10%;
        display: flex;
        left: 50%;
        position: absolute;
        width: 1440px;
        z-index: -1;
        transform: translateX(-50%);

        @media screen and (min-width: 1000px) {
            bottom: 0;

            width: 100%;

            svg {
                width: 100%;
            }
        }
    }
}
