  .insta-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
       
            padding: 20px;
        
        }

            .columns {
                float: left;
                width: 25%;
                padding: 25px;
            }

            .price {
                list-style-type: none;
                border: 0px solid #eee;
                margin: 0;
                padding: 0;
                -webkit-transition: 0.3s;
                transition: 0.3s;
            }

            .price:hover {
                box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
            }

            .price .header {
                background-color: #0866FF;
                color: white;
                font-size: 20px;
                padding: 20px;
                border-top-left-radius: 25px;
                border-top-right-radius: 25px;
            }

            .price .header2 {
                background-color: #0866FF;
                color: white;
                font-size: 44px;
                padding: 10px 0px 0px 0px;
                border-top-left-radius: 25px;
                border-top-right-radius: 25px;
            }

            .price .header3 {
                background-color: #0866FF;
                color: white;
                font-size: 20px;
                padding: 0px 0px 15px 0px;
            }

            .price li {
                border-bottom: 0px solid #eee;
                padding: 7px;
                text-align: center;
                font-size: 20px;
                background-color: #fff;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            }

            .price .grey {
                background-color: #eee;
                font-size: 35px;
                font-weight: bold;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
                border-bottom-left-radius: 25px;
                border-bottom-right-radius: 25px;
                padding: 10px;
            }

            .price .greyx {
                background-color: #eee;
                font-size: 30px;
                font-weight: normal;
                color: #000;
            }

            .price .greyxy {
                background-color: #38C7DE;
                font-size: 23px;
                font-weight: normal;
                color: #000;
            }

            .price .greyxz {
                background-color: #;
                /* Add a color if needed */
                font-size: 25px;
                font-weight: normal;
                color: #000;
            }

            /* Button styles */
            .price .button {
                display: inline-block;
                background-color: #0066FF;
                /* Default button color */
                border: none;
                color: white;
                padding: 10px 25px;
                text-align: center;
                text-decoration: none;
                font-size: 18px;
                border-radius: 5px;
                /* Rounded corners */
                transition: background-color 0.3s ease;
                /* Smooth transition */
            }

            .price .button:hover {
                background-color: #004bb5;
                /* Button color on hover */
            }

            @media only screen and (max-width: 800px) {
                .columns {
                    width: 100%;
                }
            }
       
          
                    .column {
                        float: left;
                        width: 50%;
                        padding: 7px;
                        height: 50px;
                        /* Should be removed. Only for demonstration */
                    }

                    /* Clear floats after the columns */
                    .row:after {
                        content: "";
                        display: table;
                        clear: both;
                    }

                    /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
                    @media screen and (max-width: 600px) {
                        .column {
                            width: 100%;
                        }
                    }
           
                    a:link {
                        text-decoration: none;
                    }

                    a:visited {
                        text-decoration: none;
                    }

                    a:hover {
                        text-decoration: none;
                    }

                    a:active {
                        text-decoration: none;
                    }
