#why-choose-us {
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    color: black;
    padding-inline: 3rem;
    padding-block: 2rem;
    line-height: 3rem;
    text-align: justify;
}

#why-us {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    align-items: center;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: justify;
    flex: 1;
}

#pillars-image {
    flex-shrink: 0;
    height: auto;
    max-width: 55%;
    flex: 1;
}

.pillar {
    width: 100%;
}

.pillar > h2 {
    margin-bottom: 1rem;
}

.bullet-list {
    margin-left: 1.5rem;
    text-align: start;
    font-weight: 400;
}

#products {
    position: relative;
    width: 100%;
    height: fit-content;
    background-image: url("assets/giving-white.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: -10;
    line-height: max(3.5vw, 1.2rem);
    padding-inline: 3rem;
    padding-block: 2rem;
    box-sizing: border-box;
}

#products-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
}

.product-points {
    flex: 3;
}

.product-points > ul {
    font-size: max(1.8vw, 1.2rem);
    line-height: max(2.8vw, 2.2rem);
}

.arrow {
    font-size: 10vw;
    flex: 1;
}

#steps {
    margin: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media only screen and (max-width: 1050px) {
    #why-us {
        width: 100%;
        height: fit-content;
        background-image: url("assets/2botellas_2-dark.webp");
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        z-index: -10;
        text-align: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        font-size: 1.2rem;
    }
    #pillars-image {
        display: none;
    }
    #steps-image {
        max-width: 100%;
    }
}

@media only screen and (max-width: 950px) {
    #products-content {
        flex-direction: column;
        gap: 1rem;
    }
    .arrow {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    h2 {
        text-align: center;
    }
}