        .pricing-plans {
            margin-top: 2rem;
        }

        .plan {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan label {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
            position: relative;
        }

        .plan label:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .plan label h3 {
            margin-bottom: 15px;
            font-size: 24px;
            font-weight: 700;
        }

        .plan label .price {
            margin-bottom: 5px;
            font-size: 36px;
            font-weight: 700;
            color: #007bff;
        }

        .plan label .price span {
            font-size: 18px;
            font-weight: 400;
            color: #666;
        }

        .plan label .selected-price {
            margin-bottom: 5px;
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
        }

        @media (max-width: 480px) {
            .plan label .selected-price {
                font-size: 24px !important;
            }

            .plan label .price {
                font-size: 24px;
            }

            .total_price {
                font-size: 13px;
            }
        }

        .plan label .selected-price span {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
        }

        .plan label .discount {
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }

        .plan label .plan-desc {
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }

        .plan label .plan-badge {
            position: absolute;
            top: -16px;
            left: -0.451rem;
            padding: 5px 10px;
            border-radius: 5px;
            background-color: #ec7272;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .plan label ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .plan label ul li {
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }

        /* Styles for the selected plan */
        .selected-plan {
            background-color: #d4ead2;
            color: #fff !important;
            padding: 8px;
            border-radius: 10px;
        }

        .selected-plan .btn-check:checked+.btn-outline-primary {
            box-shadow: none;
        }

        .selected-plan .btn-check:checked+.btn-outline-primary:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 255, 162, 0.25);
        }

       .arrow-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media screen and (max-width: 480px) {
            .arrow-text-container {
                max-width: 80%;
            }

            .arrow-text {
                max-width: 47%;
                font-size: 0.69rem;
                font-weight: bold;
            }
        }
   