.pricing-section {
            --secondary-color: #4f46e5;
            --primary-color: #3498db;
            --dark-color: #1e293b;
            --price-color: #3498db;
            --light-color: #f8fafc;
            --gray-color: #94a3b8;
        
        * {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
            background-color: #f4f4f4;
            color: var(--dark-color);
            line-height: 1.6;
        
            padding: 4rem 2rem;
            #max-width: 1200px;
            width: 100%;
            #margin: 0 auto;
        
        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
            align-items: center;
        }
        
        .pricing-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .pricing-header p {
            font-size: 1.1rem;
            color: var(--dark-color);
            #color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .toggle-label {
            margin: 0 1rem;
            color: var(--gray-color);
            font-weight: 500;
        }
        
        .toggle-label.active {
            color: var(--primary-color);
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: var(--primary-color);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }

        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            #grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            #gap: 2rem;
        }
        
        .pricing-card {
            background: white;
            border-radius: 10px;
            #padding: 2.5rem 2rem;
            padding: 40px 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary-color);
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1.5rem 0;
            color: var(--price-color);
        }
        
        .price span {
            font-size: 1rem;
            color: var(--gray-color);
            font-weight: normal;
        }
        
        .pricing-card p {
            color: var(--gray-color);
            margin-bottom: 1.5rem;
        }
        
        .features-list {
            list-style: none;
            margin: 2rem 0;
        }
        
        .features-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .features-list li i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: ##52D24A;
            border-color: #4338ca;
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        @media (max-width: 768px) {
            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .pricing-card  {
                background-color: #f4ffff;
            }
            
            .pricing-header h2 {
                font-size: 2rem;
            }
        }
}
