@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

h1 {
    font-weight: 500;
}

.plan-title {
    text-align: center;
}

.sub-button {
    margin-top: 20px;
    text-align: center;
}

.subscription-page {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.subscription-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: black;
}

.plans-container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 40px;
}

.plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*plan.featured {
    border: 2px solid #007bff;
    transform: scale(1.05);
}*/

.plan:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow for effect */
}

.plan h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.plan .price {
    font-size: 1.2em;
    color: #8576FF;
    margin-bottom: 15px;
}

.plan ul.benefits {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan ul.benefits li {
    margin: 10px 0;
}

.plan button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
}

@media (max-width: 991px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .plan-title{
        text-align: left;
    }
}
