.hr-pricing-card {
    background: white;
    border: 15px solid #000;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 860px;
    position: relative;
}

.hr-pricing-card:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: left;
    font-family: var(--font-01);
}

.plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    font-family: var(--font-01);
}

.price-period {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    font-family: var(--font-02);
}

.features-list li {
    padding: 8px 0;
    color: #333;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.features-list li:before {
    content: "\f45c";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 5px;
    font-family: 'Font Awesome 6 Pro';
    top:18px;
}

.order-btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    /*position: relative;*/
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    position: absolute;
    bottom: 35px;
    font-family: var(--font-01);
}

.order-btn:hover {
    background: #333;
    color: white;
    transform: translateX(5px);
}

.order-btn::after {
    content: "\f061";
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Font Awesome 6 Pro';
}

.container-custom {
    max-width: 1200px;
}
@media(max-width: 1098px){
    .plan-title{
        font-size: 1.6rem;
    }
    .plan-price{
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .plan-title {
        font-size: 2rem;
    }
    
    .hr-pricing-card {
        padding: 30px 20px;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
    .hr-pricing-card {
        height: 840px;
    }
}