        .plan-section {
            background: linear-gradient(to bottom, #0a1931, #1e3a8a);
            color: white;
            padding: 50px 0;
        }
        .plan-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-card {
            border-radius: 12px;
            text-align: center;
            padding: 30px;
            background: #fff;
            color: #000;
            position: relative;
            overflow: hidden;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
        }
        .pricing-card h3 {
            font-weight: bold;
        }
        .pricing-card .price {
            font-size: 32px;
            font-weight: bold;
            color: #000;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            font-size: 16px;
        }
        .pricing-card ul li {
            padding: 5px 0;
        }
        .highlight-card {
            background: linear-gradient(to bottom, #FFD700, #FFA500);
            color: black;
        }
        .highlight-card .price {
            color: black;
        }
        .btn-custom {
            display: block;
            width: 100%;
            font-weight: bold;
            border-radius: 8px;
            padding: 10px;
            text-decoration: none;
            text-align: center;
        }

