        .pricing-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        .pricing-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .price {
            font-size: 24px;
            font-weight: bold;
        }
        .features {
            list-style: none;
            padding: 0;
        }
        .features li {
            margin: 8px 0;
            font-size: 16px;
        }
        .features li::before {
            content: "✔️";
            margin-right: 8px;
            color: green;
        }



        .orange-line {
            height: 5px;
            border: none;
            background: orange;
            width: 40%;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
        }

        .white-line {
            height: 5px;
            border: none;
            background: white;
            width: 40%;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        }

        .blue-line {
            height: 5px;
            border: none;
            background: skyblue;
            width: 40%;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        }

