.plan-card {
    border: 1px solid #e3e3e3;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-description {
    font-size: 1rem;
    margin-bottom: 15px;
}

.buy-btn {
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #0056b3;
}

.current-plan-box {
    background-color: #f8f9fa;
    border: 1px solid #e3e3e3;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    width: 45%;
}

.current-plan-box h4 {
    margin-bottom: 10px;
}

.current-plan-box .plan-details {
    font-size: 1rem;
    margin-bottom: 5px;
}


@media (max-width: 425px) {
    .current-plan-box{
        width: 100%;
    }
}