.subscription-card {
    width: 100%; /* Set to 100% to make use of the col-md-4 width */
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.membership-logo {
    width: 100px; /* Set the width of the YouTube logo as per your requirement */
    margin-bottom: 20px;
}

.subscription-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.subscribe-button {
    background-color: var(--custom-primary);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: var(--custom-secondary); /* Darker red color on hover */
}