.title-underline:has(+span) {
    margin-bottom: 30px;
}

.title-underline +span {
    font-size: 2.4rem;
    line-height: calc(2.4rem * 1.5);
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.description-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}
.description-container > img {
    width: 400px;
    border-radius: 4px;
    transition: 500ms ease-in-out;
}
.description-container > img:hover {
    transform: scale(102%);
}
.description {
    flex-basis: 500px;
    flex-grow: 1;
}
.description > p:not(:last-child) {
    margin-bottom: 10px;
}

.section-container {
    width: 100%;
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0px;
    transition: 200ms ease-in-out;
    border: 2px solid transparent;
}
.section-container:hover {
    background-color: #FAFAFA;
    border-color: grey;
}
.section-container > h2 {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    font-weight: 600;
    margin-bottom: 10px;
}
.outer-list {
    columns: 3;
}
.outer-list * {
    font-size: 1.4rem;
    line-height: calc(1.4rem * 1.5);
}
.outer-list > li:not(:last-child) {
    margin-bottom: 10px;
}

.outer-list > li > span {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: calc(1.6rem * 1.5);
    margin-bottom: 4px;
    display: block;
}
.inner-list > li:not(:last-child) {
    margin-bottom: 4px;
}

.banner-image {
    width: 100%;
    border-radius: 4px;
}

.quote-list  p {
    font-size: 1.4rem;
    line-height: calc(1.4rem * 1.5);
    font-style: italic;
}
.quote-list figcaption {
    font-size: 1.4rem;
    line-height: calc(1.4rem * 1.5);
    font-weight: 600;
}
.quote-list > li:not(:last-child) {
    margin-bottom: 10px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.video-container > iframe {
    border-radius: 4px;
    width: 330px;
    aspect-ratio: 16 / 9;
    flex-grow: 0;
}
.nav-details {
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
    font-weight: 700;
}
.nav-details > a {
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
    font-weight: 700;
    color: var(--company-color);
    transition: 200ms ease-in-out;
}
.nav-details > a:hover {
    opacity: 0.8;
}

.product-form-button {
    display: block;
    background-color: #FFFFFF;
    width: fit-content;
    border-radius: 2px;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 6px 0px;
    transition: 100ms ease-in-out;
    border: 1px solid var(--brand-color);
    box-shadow: 0px 0px 2px rgb(from var(--brand-color) r g b / 0.5);
    text-transform: uppercase;
    width: 200px;
    text-align: center;
    margin-top: 20px;
}
.product-form-button:hover, .product-form-button:focus {
    background-color: #EEEEEE;
}


@media only screen and (max-width: 950px) {
    .title-underline +span {
        font-size: 2rem;
        line-height: calc(2rem * 1.5);
        text-align: center;
        justify-self: center;
    }

    .section-container > h2 {
        font-size: 2.4rem;
        line-height: calc(2.4rem * 1.5);
    }
    .outer-list {
        columns: 2;
    }
    .outer-list * {
        font-size: 1.2rem;
        line-height: calc(1.2rem * 1.5);
    }
    .outer-list > li > span {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
    .banner-image {
        object-fit: cover;
        height: 200px;
    }
    .quote-list :is(p, figcaption) {
        font-size: 1.2rem;
        line-height: calc(1.2rem * 1.5);
    }
    .product-form-button {
        justify-self: center;
        font-size: 1.6rem;
        width: 160px;
    }
}

@media only screen and (max-width: 650px) {
    .banner-image {
        height: 120px;
    }
}