
.new {
    background-color: #191919;
    border: none;
    color: #cdcdcd;
    padding: 12px 16px;
    font-family: Poppins;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 25px;
    }
    
    
    .new:hover {
    background-color: #060606;
    font-weight: 700;
    
    }
            .plans-container {
                max-width: 875px;
                display: flex;
                margin-top: 20px;
                flex-wrap: wrap; /* Allow wrapping */
                justify-content: space-between; /* Distribute items evenly */
            }
    
            .plan {
                width: calc(33.33% - 20px); /* Set width for each plan */
                border-radius: 5px;
                background: #191919;
                padding: 20px;            
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
                border-radius: 25px;
                margin-bottom: 20px;
                box-sizing: border-box; /* Include padding and border in width calculation */
            }
    
            .price {
                margin-top: 10px;
                font-size: 30px;
                font-weight: bold;
            }
    
            @media screen and (max-width: 468px) {
    
                .plans-container {
                    display: block;
                    width: 460px;
    
                }
    
                .plan{
                    width: 100%;
                }
                
            }
    
    
        
    