        /* Pricing Hero Section */
        .pricing-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(39, 164, 68, 0.1) 0%, rgba(70, 245, 110, 0.05) 100%);
            text-align: center;
        }
        
        .pricing-hero-heading {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .pricing-hero-heading span {
            color: var(--primary);
        }
        
        .pricing-hero-subheading {
            font-size: 1.2rem;
            color: var(--gray-dark);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* Pricing Toggle */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
        }
        
        .toggle-label {
            font-weight: 500;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--primary);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }
        
        .discount-badge {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }
        
        /* Pricing Plans */
        .pricing-plans {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .plan-card {
            background: var(--light);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .plan-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
        }
        
        .plan-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }
        
        .plan-icon {
            background-color: rgba(39, 164, 68, 0.1);
            color: var(--primary);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .plan-description {
            color: var(--gray-dark);
            margin-bottom: 25px;
            min-height: 60px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .plan-period {
            color: var(--gray-dark);
            margin-bottom: 30px;
        }
        
        .plan-features {
            margin-bottom: 30px;
            text-align: left;
            flex-grow: 1;
        }
        
        .plan-feature {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .plan-feature i {
            color: var(--primary);
        }
        
        .plan-cta {
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            margin-top: auto;
        }
        
        .plan-cta:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* Feature Comparison */
        .comparison {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .comparison-table {
            background: var(--light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            background-color: var(--primary);
            color: white;
            padding: 20px 30px;
        }
        
        .table-header-cell {
            text-align: center;
            font-weight: 600;
        }
        
        .table-header-cell:first-child {
            text-align: left;
        }
        
        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 20px 30px;
            border-bottom: 1px solid #eee;
        }
        
        .table-row:last-child {
            border-bottom: none;
        }
        
        .table-cell {
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .table-cell:first-child {
            text-align: left;
            justify-content: flex-start;
            font-weight: 500;
        }
        
        .table-cell i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .table-cell .fa-times {
            color: #ddd;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--light);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .faq-question {
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--gray-dark);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--light);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gray);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
        }
        
        .author-details {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-weight: 600;
        }
        
        .author-title {
            font-size: 0.9rem;
            color: var(--gray-dark);
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .plans-grid,
            .testimonial-grid,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .table-header,
            .table-row {
                grid-template-columns: 1fr 1fr 1fr;
            }
            
            .table-header-cell:nth-child(2),
            .table-cell:nth-child(2) {
                display: none;
            }
            
            .plan-card.featured {
                transform: scale(1);
                margin: 20px 0;
            }
            
            .plan-card.featured:hover {
                transform: translateY(-5px);
            }
        }
        
        @media (max-width: 768px) {
            .plans-grid,
            .testimonial-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }            
            
            
            .pricing-hero-heading {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .table-header,
            .table-row {
                grid-template-columns: 1fr 1fr;
            }
            
            .table-header-cell:nth-child(3),
            .table-cell:nth-child(3) {
                display: none;
            }
        }