 :root {
            --primary: #729BF0;
            --primary-light: #EDF2FE;
            --primary-dark: #729BF0;
            --background: #ffffff;
            --text: #1A1A1A;
            --gray: #91929E;
            --light-gray: #f8f8f8;
            --border: #E5E7EB;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Helvetica Neue" !important;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .header-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Pricing Section Styles */
        .pricing-section {
            padding-top: 100px;
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .pricing-header h1 {
            font-size: 28px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .loading-container {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.1);
          display: flex;
          justify-content: center;
          align-items: center;
        }
         .loading {
          width: 80px;
          height: 80px;
          border: 4px solid #f3f3f3;
          border-top: 4px solid #729BF0;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }

        @keyframes spin {
          0% {
            transform: rotate(0deg);
          }
          100% {
            transform: rotate(360deg);
          }
        }


        /* Billing Toggle Styles */
        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .save-text {
            color: #E71A59;
            font-size: 14px;
        }

        .toggle-container {
            background: #f3f3f3;
            border-radius: 24px;
            padding: 4px;
        }

        .toggle-button {
            padding: 8px 20px;
            border: none;
            background: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .toggle-button.active {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* Pricing Cards Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 64px;
        }

        .pricing-card {
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 24px;
            position: relative;
            background: white;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
        }

        .pricing-card.popular {
            border-color: var(--primary);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-light);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Feature Comparison Table */
        .feature-comparison {
            margin-top: 64px;
        }

        .feature-comparison h2 {
            font-size: 24px;
            margin-bottom: 32px;
            text-align: center;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 64px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }
        .comparison-table td {
            color: var(--gray);
         }

        .comparison-table th {
            font-weight: 600;
            color: var(--text);
            background: white;
            position: sticky;
            top: 80px;
            z-index: 10;
            font-size: 16px;
        }

        .comparison-table td:first-child {
            position: sticky;
            left: 0;
            background: white;
            font-weight: 500;
        }

        .feature-group {
            background: var(--light-gray);
            font-weight: 700;
            color: var(--primary-dark);
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        /* Feature checkmarks and values */
        .check {
            color: var(--primary);
        }

        .cross {
            color: #D1D5DB;
            font-size: 18px;
        }

        .limited {
            color: var(--gray);
            font-style: italic;
        }

        /* Pricing details */
        .price-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin: 0px 0;
            margin-top: 0px;
        }

        .price-period {
            font-size: 14px;
            color: var(--gray);
        }

        .price-description {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 24px;
        }

        /* CTA Buttons */
        .cta-button {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            margin-bottom: 0px;
        }

        .cta-button.primary {
            background: var(--primary);
            color: white;
        }

        .cta-button.primary:hover {
            background: var(--primary-dark);
        }

        .cta-button.secondary {
            background: white;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .cta-button.secondary:hover {
            background: var(--light-gray);
        }

        /* Feature list in cards */
        .feature-list {
            list-style: none;
            margin-top: 24px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text);
        }
        .feature-group td {
            color: #0A1629;
            font-weight: 700 !important;
            font-size: 15px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .header-container {
                padding: 1rem;
            }
        }


        .pricing-info h3 {
            height: 50px;
            margin-bottom: 0px;
        }

        .pricing-card {
            display: flex;
            flex-direction: column;
        }

        .card-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: start;
            margin-bottom: 24px;
        }

        .pricing-info {
            display: flex;
            flex-direction: column;
        }


        .feature-list {
            margin-top: 0; /* Override the existing margin */
            padding-top: 24px; /* Match the existing spacing */
            height: 222px;
            margin-bottom: 0px;
        }

        /* Add media query for mobile responsiveness */
        @media (max-width: 768px) {
            .card-content {
                grid-template-columns: 1fr;
            }
        }



