.package-cost__section {
    background: #fff;
    border-radius: 15px;
    padding: 20px 10px 10px 10px;
    margin-bottom: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.package-cost__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.package-cost__title {
    border-radius: 12px;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.08);
}

.package-cost__title:first-child {
    background: #243580;
}

.package-cost__title:last-child {
    background: #ff7691;
}

.package-cost__items {
    margin: 15px 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-cost__item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.package-cost__item {
    border-radius: 10px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.package-cost__item__title {
    font-family: "Roboto", ui-sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252525;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(179, 147, 211, 0.1), 3px 4px 4px rgba(179, 147, 211, 0.15), 4px 6px 4px rgba(179, 147, 211, 0.2), 5px 8px 4px rgba(179, 147, 211, 0.25);
}

.package-cost__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: center;
    margin-top: 10px;
}

.package-cost__value {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #252525;
}

.package-cost__value p {
    margin: 0;
}

.package-cost__value:first-child {
    background: rgba(36, 53, 128, 0.15);
}

.package-cost__value:last-child {
    background: rgba(255, 118, 145, 0.25);
}

.package-cost__value.is-negative {
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.5), inset -4px -4px 8px rgba(255, 255, 255, 0.08);
}

.package-cost__value.is-positive {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.08);
}




