.price-tag.price-tag-AI,
.price-tag.price-tag-standard,
.price-tag.price-tag-turbo {
    color: #1a3e72;
    margin: 5px 0;
    font-weight: 800;
}

.btn-subscribe-attorney,
.subscribe-btn,
.subscribe-btn:hover {
    background-color: #9b6b34 !important;
}

.custom-card-plan {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow .3s;
    height: 100%;
    min-height: 400px;
}

.custom-card-plan:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.col-md-4.plan-card {
    padding: 0;
}

.plan-title {
    color: #1a3e72;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 5px
}

.plan-para {
    color: #666;
    font-size: 15px;
    margin-top: 0;
}

.price-tag.price-tag-AI {
    font-size: 42px;
}

.price-tag.price-tag-turbo {
    font-size: 36px;
}

.price-tag.price-tag-standard {
    font-size: 32px;
}

.subscribe-btn {
    color: #fff;
    border: none;
    margin-top: 15px
}

.price-tag-AI,
.price-tag-standard,
.price-tag-turbo {
    color: #1a3e72;
    font-weight: 800;
}

#plans-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
}

.price-tag-AI {
    font-size: 42px;
}

.price-tag-turbo {
    font-size: 36px;
}

.price-tag-standard {
    font-size: 32px;
}

.price-tag-default {
    font-size: 28px;
    color: #555;
}

.btn-subscribe-attorney {
    color: #fff !important;
}

.btn-subscribe-standard {
    background-color: #1a3e72 !important;
    color: #fff !important;
}

.btn-subscribe-turbo {
    background-color: #2c5aa0 !important;
    color: #fff !important;
}

.subscribe-btn[disabled] {
    background-color: #aaa !important;
    cursor: not-allowed;
    opacity: .7;
}

.highlight-active-card .custom-card-plan {
    transform: scale(1.02);
    border: 2px solid #28a745;
    box-shadow: 0 8px 24px rgba(40, 167, 69, .4);
    transition: .3s ease-in-out;
    position: relative;
    background-color: #f9fff9
}

.highlight-active-card .custom-card-plan::before {
    content: "Your Current Plan";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    z-index: 2
}

.highlight-active-card .custom-card-plan::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    animation: 2s infinite pulseHighlight;
    background: rgba(40, 167, 69, .05);
    z-index: 1
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, .3)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0)
    }
}