.price-list {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.price-list:hover {
    transform: translateY(-8px);
    border-color: var(--tp-primary);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.price-list__sticker {
    position: absolute;
    top: 12px;
    right: -49px;
    padding: 10px 50px;
    background-color: var(--tp-primary);
    text-align: center;
    transform: rotate(45deg);
}

.price-list__sticker .tp-title {
    margin-bottom: 0;
}

.pricing .tp-body {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.pricing .tp-body h2 {
    font-size: inherit;
    line-height: 1;
}

.pricing .tp-body p {
    font-size: 18px !important;
    margin-bottom: 0;
}

.price-list__info .tp-body ul {
    padding-left: 0;
    margin-bottom: 0;
}

.price-list__info .tp-body ul li:not(:last-child) {
    margin-bottom: 10px;
}

.price-list__info .tp-body ul i {
    color: var(--tp-primary);
    margin-right: 6px;
}

.price-list .btn-page a {
    width: 100%;
    padding: 10px 40px;
}
.price-list .btn-page a i {
    width: 30px;
    min-width: 30px;
    height: 30px;
}

.price-list .btn-page a:hover span {
    transform: translateX(0);
}


.services-more {
    height: 100%;
    padding: 20px 0;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.services-more .tp-body ul {
    padding-left: 0;
    margin-bottom: 0;
}

.services-more .tp-body ul li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
    transition: ease-in-out .4s;
}

.services-more .tp-body ul li:not(:last-child) {
    border-bottom: 1px dashed #eaecf0;
}

.services-more .tp-body ul li:not(:first-child):hover {
    background-color: #f8fafc;
}

.free {
    width: auto !important;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #067647;
    font-size: 12px;
}

.services-more .tp-body ul li strong {
    font-size: 20px;
}



@media (max-width: 767.98px) {
    .price-list {
        padding: 20px;
        border-color: var(--tp-primary);
    }
    .price-list:hover {
        transform: none;
    }
    .pricing .tp-body h2 {
        font-size: 50px;
    }
    .services-more {
        padding: 0;
    }
    
    .services-more .tp-body ul li {
        padding: 10px;
    }
    .services-more .tp-body ul li >* {
        width: 50%;
    }
    
    .services-more .tp-body ul li strong:last-child,
    .services-more .tp-body ul li span:last-child {
        text-align: right;
    }
}
