.rems-pricing-wrap {
    padding: 20px 24px 35px;
}

.rems-pricing-card {
    border: 1px solid #edf1f4;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.rems-pricing-header {
    padding: 24px 24px 14px;
    border-bottom: 1px solid #f1f3f5;
}

.rems-pricing-grid {
    padding: 24px;
}

.rems-plan-card {
    height: 100%;
    min-height: 430px;
    border: 1px solid #dfe5e8;
    border-radius: 10px;
    background: #fff;
    padding: 22px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: .2s ease;
}

.rems-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
      border: solid 1px #1EAEDB !important;

}

.rems-plan-card.subscribed {
    border: 1px solid #1EAEDB;
    box-shadow: 0 12px 30px rgba(0,118,163,.16);
}

.rems-current-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0076a3;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
}

.rems-plan-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 4px;
    padding-right: 90px;
    text-transform: capitalize;
}

.rems-plan-desc {
    font-size: 13px;
    color: #7b8794;
    min-height: 34px;
    margin-bottom: 20px;
}

.rems-plan-price {
    margin-bottom: 12px;
}

.rems-currency {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    vertical-align: top;
}

.rems-amount {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #111827;
}

.rems-duration {
    font-size: 12px;
    color: #7b8794;
    margin-left: 4px;
}

.rems-plan-note {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 18px;
}

.rems-feature-title {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.rems-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

.rems-plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #1f2933;
    margin-bottom: 12px;
    line-height: 1.35;
}

.rems-plan-features i {
    color: #21b573;
    font-size: 13px;
    margin-top: 2px;
}

.rems-plan-action {
    margin-top: auto;
}

.rems-plan-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid #0076a3;
    background: #fff;
    color: #0076a3;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}

.rems-plan-btn:hover {
    background: #0076a3;
    color: #fff;
}

.rems-plan-btn.subscribed-btn {
    background: #0076a3;
    color: #fff;
}
.rems-subscription-summary {
    margin: 24px;
    padding: 22px;
    border: 1px solid #dfe5e8;
    border-radius: 10px;
    background: #fff;
}

.rems-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #005b7f;
}
.billing-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: .2s ease;
}

.active-label {
    color: #000000;
}

.form-switch .form-check-input {
    width: 42px;
    height: 22px;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: #005b7f;
    border-color: #005b7f;
}

@media (max-width: 767px) {
    .rems-pricing-wrap,
    .rems-pricing-grid {
        padding: 16px;
    }

    .rems-plan-title {
        padding-right: 0;
    }

    .rems-current-badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }
}