.listing-logo {
    height: 100px;
    margin-bottom: 60px;
    margin-top: 20px;
}

p:has(+ul) {
    font-size: 2rem;
    font-weight: 600;
    line-height: calc(2rem * 1.5);
}

.table-special {
    margin: 20px 0px;
    justify-self: center;
    border-radius: 4px;
}

.product, .product-small {
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    border-radius: 20px;
    padding: 20px;
    transition: 200ms ease-in-out;
    border: 2px solid transparent;
}

:is(.product, .product-small):hover {
    background-color: #FAFAFA;
    border-color: grey;
}

.product:hover .product-image {
    transform: scale(102%);
}


.product-small > img {
    transition: 500ms ease-in-out;
}

.product-small:hover > img {
    transform: scale(102%);
}

:is(.product, .product-small) :is(h3, span) {
    font-size: 3rem;
    font-weight: 800;
    line-height: calc(3rem * 1.5);
}

.product {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-list .product-small {
    width: 400px;
    flex-basis: 400px;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    margin-bottom: 20px;
    align-items: center;
}
.product-image {
    width: 400px;
    border-radius: 4px;
    transition: 500ms ease-in-out;
}
.product-table {
    flex-basis: 600px;
    flex-grow: 1;
    width: 600px;
    max-height: 250px;
    border-radius: 4px;
}


.product-small > img {
    margin-bottom: 20px;
    border-radius: 4px;
}

.feature-list {
    margin-left: 20px;
}
.list-small {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
}
.feature-list > li {
    list-style-type: disc;
    font-size: 1.6rem;
    line-height: calc(1.6rem * 1.5);
}

.product-list {
    margin-top: 20px;
}
.product-list > li {
    width: 100%;
    margin: 20px 0px;
}

.list-small > li {
    margin: 0;
}

.download-button,
.product-form-button {
    display: block;
    background-color: #FFFFFF;
    border-radius: 2px;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 6px 0px;
    transition: 100ms ease-in-out;
    border: 1px solid lightgrey;
    box-shadow: 0px 0px 2px rgb(0, 0, 0, 0.2);
    text-transform: uppercase;
    width: 180px;
    text-align: center;
    cursor: pointer;
    margin-left: 20px;
}

:is(.download-button, .product-form-button):hover {
    background-color: #FAFAFA;
}


@media only screen and (max-width: 950px) {
    p:has(+ul) {
        font-size: 1.8rem;
        line-height: calc(1.8rem * 1.5);
    }
    .feature-list > li {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
    .product {
        align-items: center;
    }
    
    .download-button,
    .product-form-button {
        font-size: 1.4rem;
        width: 160px;
        margin-left: unset;
    }
}