.desco{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    gap: 10px;
    
}

.desco > h1{
    color: aqua;
}



.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 150px;
    padding-bottom: 150px;
}

.plan {
    background-color: rgba(8, 45, 64, 0.66);
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    flex: 1 1 calc(25% - 40px); /* For 4 cards */
    min-width: 250px;
    min-height: 400px; /* Ensures all cards have the same height */
}

.plan:hover {
    border: 1.5px solid rgba(219, 155, 30, 1);
    transform: scale(1.05);
}

/* Remove initial border from Business Plan */
.plan.most-popular {
    
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plan h2 {
    font-size: 24px;
    margin-bottom: 20px;
    
    
    /* background: linear-gradient(-40deg, #db9b1e 0%, #C0D4C9 100%); */
    border-radius: 15px;
    min-height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.h2{
    color: black;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    margin: 10px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✔';
    color: #7b4fd4;
    font-size: 16px;
    margin-right: 10px;
}

/* For features that are not included, show a - sign */
.features li.not-included {
    color: #aaa;
}

.features li.not-included::before {
    content: '-';
    color: #ff4d4f;
    font-size: 16px;
    margin-right: 10px;
}

.choose-plan-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(60deg, rgba(37, 137, 172, 1) 0%, rgba(219, 155, 30, 1) 100%);
    border: 1.5px solid rgba(219, 155, 30, 1);
    color: #fff;
    
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    align-items: self-end;
}

.choose-plan-btn:hover {
    background: rgba(8, 45, 64, 0.66);
}

.plan-highlight {
    background-color: #e0dcf6;
    border-radius: 8px;
    padding: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .plan {
        flex: 1 1 calc(33% - 40px); /* 3 cards per row */
    }

    .plan:hover {
    border: 1.5px solid rgba(219, 155, 30, 1);
    
    transform: scale(1.05);
}
}

@media screen and (max-width: 900px) {
    .plan {
        flex: 1 1 calc(50% - 40px); /* 2 cards per row */
    }

    .plan:hover {
    border: 1.5px solid rgba(219, 155, 30, 1);
    
    transform: scale(1.05);
}

    
}

@media screen and (max-width: 600px) {
    .plan {
        flex: 1 1 100%; /* 1 card per row */
    }

    .plan:hover {
    border: 1.5px solid rgba(219, 155, 30, 1);
    
    transform: scale(1.05);
}
}

@media screen and (max-width: 480px){
    .pricing-table{
        flex-direction:column;
        align-items:center;
    }
}