        .pricing-plan {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .pricing-plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .plan-top {
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .plan-bottom {
            padding: 20px 10px;
        }

        .plan-description p {
            margin-bottom: 0.5rem;
        }

        .get-started-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: #dc3545;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .get-started-btn:hover {
            background-color: #c82333;
            color: white;
        }

        .plan-description {
            min-height: 150px; /* Adjust based on your content */
        }

        @media (max-width: 767px) {
            .plan-description {
                min-height: auto;
            }
        }