  .bg-gradient {
            background: linear-gradient(135deg, #6a2c94 0%, #4b2b8a 50%, #1e5799 100%);
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }
        
        .blob {
            position: absolute;
            border-radius: 50%;
            background: rgba(30, 87, 153, 0.3);
            filter: blur(40px);
            z-index: 0;
        }
        
        .blob-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -100px;
        }
        
        .blob-2 {
            width: 500px;
            height: 500px;
            bottom: -200px;
            left: -100px;
            background: rgba(75, 43, 138, 0.3);
        }
        
        .blob-3 {
            width: 300px;
            height: 300px;
            bottom: 100px;
            right: 100px;
            background: rgba(30, 87, 153, 0.2);
        }
        
        .logo-container {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px;
        }
        
        .logo-text {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            text-align: center;
            line-height: 1.2;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 10px 20px !important;
            position: relative;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 20px;
            right: 20px;
            height: 2px;
            background-color: white;
        }
        
        .main-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            text-align: center;
            margin: 50px 0;
            letter-spacing: 2px;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .price-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
        }
        
        .price-tag {
            position: absolute;
            top: 30px;
            right: 0;
            padding: 10px 20px;
            color: white;
            font-weight: bold;
            border-radius: 30px 0 0 30px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        
        .price-header {
            height: 120px;
            margin-bottom: 20px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0 20px;
            margin-top: 30px;
        }
        
        .feature-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            color: #666;
        }
        
        .feature-list i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .fa-check {
            color: #203348;
        }
        
        .fa-times {
            color: #dc3545;
        }
        
        .select-btn {
            display: block;
            width: 80%;
            margin: 30px auto;
            padding: 10px;
            border: none;
            border-radius: 30px;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
        }
        
        /* Basic Plan */
        .basic .price-circle {
            background-color: #203348;
        }
        
        .basic .price-tag {
            background-color: #203348;
        }
        
        .basic .select-btn {
            background-color: #203348;
        }
        
        /* Standard Plan */
        .standard .price-circle {
            background-color: #3b82f6;
        }
        
        .standard .price-tag {
            background-color: #3b82f6;
        }
        
        .standard .select-btn {
            background-color: #3b82f6;
        }
        
        /* Premium Plan */
        .premium .price-circle {
            background-color: #f59e0b;
        }
        
        .premium .price-tag {
            background-color: #f59e0b;
        }
        
        .premium .select-btn {
            background-color: #f59e0b;
        }
        
        @media (max-width: 992px) {
            .main-title {
                font-size: 2.5rem;
                margin: 30px 0;
            }
            
            .price-circle {
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }
            
            .price-tag {
                font-size: 1rem;
                padding: 8px 15px;
            }
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .price-header {
                height: 100px;
            }
        }