
.grid-container.pricing-table {
                display: grid;
                grid-template-columns: repeat(2, 1fr); /* Two equal columns */
                gap: 5px;
                justify-content: center;
                max-width: 600px;
                margin: 0 auto;
            }

            /* Style for table cells */
            .grid-container.pricing-table .group {
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                font-size: 0.7rem;
                background-color: #ffffff; /* White background */
                box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            }

            /* Header Styling */
            .grid-container.pricing-table .header {
                background-color: #007bf7; /* Blue header */
                color: white;
                font-weight: bold;
            }

