.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1.5rem 5rem;
}

.pricing__content {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    width: 100%;
    box-shadow: 0px 4.61px 4.61px 0px #0000000A;
    border-radius: 23px;
    overflow: hidden;
    background-color: #ffffff;
}

.pricing__header {
    background-color: #09284C;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    color: #fff;
    padding: 1.5rem 2.5rem;
}

.pricing__content table {
    border-collapse: collapse;
}

.pricing__content td {
    padding: 2rem 3rem;
    background-color: #ffffff;
    vertical-align: top;
}

.pricing__content tr {
    border-top: 1px solid #EEEEEE;
}

.pricing__content tr:nth-child(2n) td {
    background-color: #F7FAFF;
    margin-left: auto;
}

.pricing__info {
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    align-items: flex-end;
    gap: 0.6rem;
    white-space: nowrap;
    margin-bottom: auto;
}

@media only screen and (max-width: 1350px) {
    .pricing__content td {
        padding: 1.5rem 2.5rem;
    }
}

@media only screen and (max-width: 900px) {
    .pricing {
        padding: 2rem 0.8rem;
    }

    .pricing__content td {
        padding: 1.5rem 1rem 1.5rem 1rem;
    }

    .pricing__header {
        padding: 1.5rem 1.2rem;
    }
}