.price-section {
    background-color: #f6f3ee;
    padding: 4rem 0;
}

.price-section__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.price-section__item {
    margin: 2rem;
    flex-basis: 45%;
    text-align: center;
}

.price-section__title {
    font-family: 'Comfortaa', cursive;
    margin-bottom: 2rem;
}

.price-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-section__option {
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    color: #666;
}

.back {
    text-decoration: none;
    margin-left: 3rem;
    color: black;
}

.back:hover {
    color: #666;
}

.fa-arrow-left {
    margin-right: 0.5rem;
}


@media screen and (max-width: 576px) {

    .price-section__container {
        display: block;
    }

    .price-section__option {
        font-size: 1rem;
    }

    .back{
        font-size: 1rem;
    }

}