main .prices .b{
                background-color: #fff;
                border-radius: 5px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            .prices table {
                width: 100%;
                border-collapse: collapse;
                margin: 20px 0;
                overflow: hidden;
                border-radius: 5px;
            }
            .prices th,
            .prices  td {
                border: 1px solid #ddd;
                padding: 12px;
                text-align: left;
            }
            .prices th {
                background-color: var(--blue); 
                color: #fff;
            }

            .prices tr:nth-child(even) {
                background-color: #f6f6f6;
            }
            .prices h1{
                text-align: center;
            }



            /* Tablet & Mobile */
            @media (max-width: 799.999px) {
            .prices .table-responsive {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .prices table {
                min-width: 600px;
            }
            
            main .prices section {
                max-width: 90vw;
                margin: 0 auto;
            }
            }
            /* Desktop */
            @media (min-width: 800px) {
                }