
    
		.hero {
			padding-top: 120px;
		}
		
		/* General table styles */
		.pricing-table {
		  overflow-x: auto; /* Enables horizontal scrolling */
		  gap: 10px;
		  max-width: 100%; /* Ensures no horizontal scrollbars on the edges */
		  padding: 20px;
		  justify-content: flex-start;
		  
		}
		
		
		.pricing-row {
		  display: flex;
		}
		
		
		.pricing-feature, .pricing-plan {
		  /* flex: 1; */		  
		  flex: 0 0 18%; /* Initially show 5 columns on desktop */
		  padding: 24px;
		  border-bottom: 1px solid var(--strong-900, #181B25);
		}
		
		
		.pricing-feature {
			color: #717784;
			min-width: 100px;
		}
		.pricing-plan {
			background-color:var(--color-title, #0E121B);
			color: white;
		  	margin-left:18px;	
			min-width: 220px;
		}
		
		


		/* Tablet breakpoints */
		@media (max-width: 1024px) {


			.hero {
				padding-top: 100px;
			}
		  
		  .pricing-table {
			gap: 10px; /* Smaller space between columns */
			padding: 10px;
		  }

		  .pricing-feature, .pricing-plan {
			flex: 0 0 18%; /* Make each column narrower to fit 5 columns */
		  }
		}

		/* Mobile breakpoints */
		@media (max-width: 480px) {
		  .pricing-table {
			gap: 5px; /* Further reduce space between columns */
			padding: 5px;
		  }

		.pricing-feature, .pricing-plan {
			flex: 0 0 20%; /* Still 5 columns on mobile, but allow scrolling */
		  }
		}


		.button-start-trial {
			width: fit-content;
			margin: 0px auto;
			margin-top: 40px;
			padding: 12px 24px;
			border-radius: 999px;
			background-color: var(--base-primary-800, #1A2640);
			font-size: 16px;
		}
		.button-start-trial a {
			color: white;
			text-decoration: none;
		}

		.pricing-table-package-name {
			font-size: 18px;
			font-weight: 400;
		}

		.pricing-table-package-price {
			font-size: 24px;
		}
		.pricing-table-button-buy {
			width: 154px;
			margin-top: 24px;
			padding: 12px 8px;
			border-radius: 999px;
			background-color: var(--neutral-base, #222530);
			font-size: 14px;
			font-weight: 600;
			text-align: center;
		}
		.pricing-table-button-buy a {
			color: white;
			text-decoration: none;
		}


		.pricing-table-text-dark {
			color: var(--color-text-sub-500,#717784);
		}

		.price-amount {
			font-weight: 600;
		}

		.price-currency {

		}



 
        .knowledge-hero-content {
            z-index: 2;
            background: white;
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
	    margin-bottom: -80px;
	    margin-top:80px;
        }

        .knowledge-hero-title {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--base-primary-800, #1A2640);
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }


        .knowledge-hero-subtitle {
            font-size: 1.125rem;
            color: var(--base-primary-800, #1A2640);
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .knowledge-cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .knowledge-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
        }

        .knowledge-cta-button:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

			.hero {
				padding-top: 120px;
			}

            .knowledge-hero-section {
                border-radius: 16px;
            }

            .knowledge-hero-title {
                font-size: 2.5rem;
            }

            .knowledge-hero-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .knowledge-cta-button {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {

            .knowledge-hero-title {
                font-size: 2rem;
            }

            .knowledge-hero-subtitle {
                font-size: 0.95rem;
            }
        }
        
        

