  .pre_container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background:  #38b6ff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .pricing-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .pricing-header {
            margin-bottom: 3rem;
            color: white;
        }

        .pricing-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .pricing-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pricing-card {
            background: white;
            border-radius: 25px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 1fr 400px;
            min-height: 600px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 70px rgba(0,0,0,0.2);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #5385d5,#45b7d1, #4b5bd8);
        }

        .left-section {
            padding: 3rem 3rem 3rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .right-section {
            padding: 3rem 4rem 3rem 3rem;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-left: 1px solid #ecf0f1;
            position: relative;
        }

        .right-section::before {
            content: '';
            position: absolute;
            top: 50px;
            bottom: 50px;
            left: 0;
            width: 3px;
            background: linear-gradient(180deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .plan-header {
            text-align: left;
            margin-bottom: 2.5rem;
        }

        .plan-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg,  #38b6ff, #7072de);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 10px 20px rgba(238, 90, 36, 0.3);
            margin-bottom: 1.5rem;
        }

        .plan-name {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.8rem;
        }

        .plan-description {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .features-list {
            list-style: none;
            text-align: left;
        }

        .features-list li {
            padding: 1rem 0;
            display: flex;
            align-items: center;
            color: #34495e;
            font-size: 1rem;
            border-bottom: 1px solid #ecf0f1;
            transition: all 0.2s ease;
        }

        .features-list li:hover {
            padding-left: 10px;
            background: rgba(102, 126, 234, 0.05);
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li i {
            color:  #38b6ff;
            margin-right: 1.2rem;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .price-section {
            margin-bottom: 3rem;
        }

        .price {
            font-size: 4rem;
            font-weight: 800;
            color: #2c3e50;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.3rem;
            margin-bottom: 0.5rem;
        }

        .currency {
            font-size: 2rem;
            font-weight: 600;
        }

        .billing-cycle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .price-features {
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-features h3 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .price-highlights {
            list-style: none;
        }

        .price-highlights li {
            padding: 0.5rem 0;
            color: #34495e;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .price-highlights li i {
            color: #667eea;
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #38b6ff 0%, #667eea 100%);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        .guarantee-text {
            color: #7f8c8d;
            font-size: 0.9rem;
            font-style: italic;
            line-height: 1.4;
        }

        .guarantee-text i {
            color: #38b6ff;
            margin-right: 0.5rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .pricing-card {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .right-section {
                border-left: none;
                border-top: 1px solid #ecf0f1;
            }

            .right-section::before {
                display: none;
            }

            .left-section {
                padding: 2.5rem 2rem;
            }

            .right-section {
                padding: 2.5rem 2rem;
            }

            .plan-header {
                text-align: center;
            }

            .features-list {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .pricing-container {
                max-width: 100%;
                padding: 0 10px;
            }

            .pricing-header h1 {
                font-size: 2.2rem;
            }

            .pricing-header p {
                font-size: 1rem;
            }
            
            .pricing-card {
                margin: 0;
                border-radius: 20px;
            }
            
            .left-section,
            .right-section {
                padding: 2rem 1.5rem;
            }
            
            .price {
                font-size: 3rem;
            }

            .plan-name {
                font-size: 1.8rem;
            }

            .features-list li {
                font-size: 0.95rem;
                padding: 0.8rem 0;
            }
        }

        @media (max-width: 480px) {
            .left-section,
            .right-section {
                padding: 1.5rem 1rem;
            }

            .price {
                font-size: 2.5rem;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }