/* Horizontal Plan Styling */
.horizontal-plan .card-plan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

/* Sections inside horizontal layout */
.horizontal-plan .card-plan__package,
.horizontal-plan .card-plan__desc,
.horizontal-plan .card-plan__price,
.horizontal-plan .card-plan__cartbtn,
.horizontal-plan .card-plan__renew-price {
    flex: 1 1 20%;
}

/* Features take larger space */
.horizontal-plan .card-plan__feature {
    flex: 1 1 100%;
    margin-top: 20px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .horizontal-plan .card-plan {
        flex-direction: column;
        text-align: center;
    }
}

/* Horizontal Cloud Plan Layout */
.cloud-plan-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* LEFT SIDE */
.cloud-plan-left {
    flex: 0 0 35%;
}

/* RIGHT SIDE - Push to right */
.cloud-plan-right {
    flex: 0 0 60%;
    margin-left: auto;   /* THIS pushes it to right */
}

/* Feature list layout */
.cloud-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 60px;
    text-align: left;   /* prevent center alignment */
}

/* Feature item */
.cloud-feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

/* Green check */
.cloud-feature-list i {
    color: #22c55e;
    margin-right: 10px;
}
