.subscription-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.subscription-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.subscription-box img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.subscription-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.choose-btn {
    margin-top: 10px;
}

a[aria-disabled="true"] {
background-color: gray;
border: 1px solid #eee;
cursor: not-allowed;
pointer-events: none;
}  