:root {
            --primary: #4285F4;
            --primary-light: #e8f0fe;
            --primary-dark: #3367D6;
            --secondary: #9C27B0;
            --accent-red: #EA4335;
            --accent-yellow: #FBBC05;
            --accent-green: #34A853;
            --accent-green-light: #e6f4ea;
            --accent-pink: #E91E63;
            --accent-orange: #FF9800;
            --accent-teal: #009688;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --medium-gray: #e0e0e0;
            --dark-gray: #5F6368;
            --text-dark: #202124;
            --text-light: #5F6368;
            --border-radius: 12px;
            --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            margin-top: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        
        .header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }
        
        .section {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 35px 30px;
            margin-bottom: 40px;
            transition: var(--transition);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        
        .section-title p {
            font-size: 1.05rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        /* Feature Comparison Table */
        .table-container {
            overflow-x: auto;
            width: 100%;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
        }
        
        table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        thead {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }
        
        th {
            padding: 16px 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }
        
        th:first-child {
            text-align: left;
            padding-left: 25px;
            width: 35%;
        }
        
        .plan-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        
        .plan-name {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .plan-price {
            font-size: 0.95rem;
            font-weight: 400;
            opacity: 0.9;
        }
        
        tbody tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        tbody tr:last-child {
            border-bottom: none;
        }
        
        tbody tr:nth-child(even) {
            background-color: var(--light-gray);
        }
        
        td {
            padding: 16px 15px;
            font-size: 1rem;
            color: var(--text-dark);
        }
        
        td:first-child {
            padding-left: 25px;
            font-weight: 500;
        }
        
        td:not(:first-child) {
            text-align: center;
            font-weight: 500;
        }
        
        .feature-name {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .feature-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .feature-text {
            display: flex;
            flex-direction: column;
        }
        
        .feature-description {
            font-size: 0.85rem;
            color: var(--dark-gray);
            margin-top: 4px;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .check {
            color: var(--accent-green);
            font-size: 1.3rem;
        }
        
        .xmark {
            color: #DADCE0;
            font-size: 1.3rem;
        }
        
        .price-tag {
            background: var(--light-gray);
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        /* Free Features Section - Card Style */
        #free-features {
            background: linear-gradient(120deg, rgba(52, 168, 83, 0.03) 0%, var(--light-gray) 100%);
        }
        
        #free-features .section-title h2 {
            color: var(--accent-green);
        }
        
        #free-features .section-title p {
            color: var(--accent-green);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid rgba(52, 168, 83, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: rgba(52, 168, 83, 0.3);
        }
        
        .feature-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(52, 168, 83, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        
        .feature-card p {
            font-size: 0.95rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .container {
                padding: 0;
            }
            
            .section {
                padding: 30px 25px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            th, td {
                padding: 14px 12px;
            }
            
            th:first-child, td:first-child {
                padding-left: 20px;
            }
            
            .feature-name {
                gap: 10px;
            }
            
            .feature-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            
            .section {
                padding: 25px 20px;
            }

            .header {
                margin-top: 20px;
                margin-bottom: 10px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                display: none;
            }
        }
        
        @media (max-width: 576px) {            
            .section {
                padding: 25px 18px;
                margin-bottom: 35px;
            }
            
            .section-title {
                margin-bottom: 25px;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card {
                padding: 20px;
            }
        }

        @media (max-width: 600px) {
            table {
                min-width: 500px; /* Reduce minimum width for mobile */
                font-size: 0.92rem;
            }
            th, td {
                padding: 10px 8px;
            }
            .feature-description {
                display: none; /* Hide descriptions for compact view */
            }
            .plan-price {
                font-size: 0.85rem;
            }
            /* Optionally hide the Custom Price column on very small screens */
            th:last-child, td:last-child {
                display: none;
            }
        }