.ln-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (min-width: 1400px) {
            .ln-container {
                max-width: 1320px;
            }
        }
        
        /* Header Section */
        .ln-page-header {
            text-align: center;
            padding: 60px 0 40px;
            animation: ln-fadeInUp 0.6s ease-out forwards;
            border-radius: 12px;
            margin-bottom: 32px;
        }
        
        .ln-page-header h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 36px;
            font-weight: 700;
            color: #000;
            margin-bottom: 16px;
        }
        
        .ln-page-header p {
            font-size: 18px;
            color: #757575;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Pricing Cards Section */
        .ln-pricing-section {
            background: linear-gradient(180deg, #F9F5FF 0%, #FFFFFF 100%);
            padding: 100px 0;
        }
        
        .ln-pricing-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 36px;
            margin-bottom: 80px;
        }
        
        .ln-pricing-card {
            background: white;
            border-radius: 18px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
            border-top: 4px solid #673AB7;
            animation: ln-fadeInUp 0.7s cubic-bezier(.4,2,.6,1) forwards;
            animation-delay: calc(0.15s * var(--card-index));
            opacity: 0;
            transform: translateY(40px);
        }
        
        @keyframes ln-fadeInUp {
            from { opacity: 0; transform: translateY(40px);}
            to { opacity: 1; transform: none;}
        }
        
        .ln-pricing-card:hover {
            transform: translateY(-16px) scale(1.06);
            box-shadow: 0 24px 48px rgba(103, 58, 183, 0.18);
            z-index: 2;
        }
        
        .ln-popular-card {
            border-top: 4px solid #FBC02D;
            position: relative;
        }
        
        .ln-popular-badge {
            position: absolute;
            top: -4px;
            right: 20px;
            background-color: #FBC02D;
            color: #000;
            font-size: 14px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 0 0 6px 6px;
            transform: scale(0.8);
            transition: transform 0.2s ease;
        }
        
        @keyframes ln-floatBadge {
            from { top: -4px; }
            to { top: 6px; }
        }
        
        .ln-popular-card:hover .ln-popular-badge {
            transform: scale(1);
        }
        
        .ln-card-header {
            padding: 32px 28px;
            border-bottom: 1px solid #EEEEEE;
        }
        
        .ln-card-title {
            font-family: 'Roboto Slab', serif;
            font-size: 20px;
            font-weight: 600;
            color: #000;
            margin-bottom: 8px;
        }
        
        .ln-card-subtitle {
            font-size: 14px;
            color: #9E9E9E;
            margin-bottom: 16px;
        }
        
        .ln-card-price {
            font-family: 'Roboto Slab', serif;
            font-size: 32px;
            font-weight: 700;
            color: #673AB7;
            margin-bottom: 8px;
        }
        
        .ln-card-price span {
            font-size: 16px;
            font-weight: 400;
            color: #9E9E9E;
        }
        
        .ln-card-button {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #673AB7;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-align: center;
            text-decoration: none;
            margin-top: 16px;
            position: relative;
            overflow: hidden;
        }
        
        .ln-card-button:after {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.4);
            border-radius: 100%;
            transform: translate(-50%, -50%);
            transition: width 0.4s cubic-bezier(.4,2,.6,1), height 0.4s cubic-bezier(.4,2,.6,1);
            pointer-events: none;
        }
        
        .ln-card-button:active:after {
            width: 200%;
            height: 500%;
        }
        
        .ln-popular-card .ln-card-button {
            background-color: #FBC02D;
            color: #000;
        }
        
        .ln-card-button:hover {
            background-color: #5E35B1;
            transform: scale(1.02);
        }
        
        .ln-popular-card .ln-card-button:hover {
            background-color: #FFB300;
            transform: scale(1.02);
        }
        
        .ln-card-features {
            padding: 32px 28px;
        }
        
        .ln-feature-section {
            margin-bottom: 20px;
        }
        
        .ln-feature-section h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 16px;
            font-weight: 600;
            color: #616161;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .ln-feature-section h3 i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .ln-included h3 i.fa-check {
            color: #40a819;
        }

        .fas.fa-check-circle.check {
            color: #40a819;
            height: 20px;
            width: 20px;
        }
        .fas.fa-times-circle.dash {
            color: rgb(252, 80, 115);
        }
        
        .ln-not-included h3 i.fa-times {
            color: #E0E0E0;
        }
        
        .ln-feature-list {
            list-style: none;
        }
        
        .ln-feature-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .ln-feature-list li i {
            margin-right: 8px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }
        
        .ln-included .ln-feature-list li i.fa-check-circle {
            color: #40a819;
        }
        
        .ln-not-included .ln-feature-list li i.fa-times-circle {
            color: #BDBDBD;
        }
        
        /* Comparison Table Section */
        .ln-comparison-section {
            background-color: #FFFFFF;
        }
        
        .ln-comparison-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .ln-comparison-header h2 {
            font-family: 'Roboto Slab', serif;
            font-size: 32px;
            font-weight: 700;
            color: #000;
            margin-bottom: 16px;
        }
        
        .ln-comparison-header p {
            font-size: 18px;
            color: #757575;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .ln-table-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(103, 58, 183, 0.08);
            overflow-x: auto;
            overflow-y: auto;
            border: 1px solid #EEEEEE;
            max-height: 900px;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
        }
        
        .ln-table-container::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari, Edge */
        }
        
        .ln-comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .ln-comparison-table th,
        .ln-comparison-table td {
            padding: 16px;
            text-align: left;
            border: 1px solid #EEEEEE;
            vertical-align: middle;
            transition: background-color 0.3s ease;
        }
        
        .ln-comparison-table th {
            background-color: #f8f9fb;
            font-weight: 600;
            color: #000;
        }
        
        .ln-comparison-table thead {
            position: sticky;
            top: 0;
            z-index: 20;
            background-color: #f8f9fb;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .ln-comparison-table thead th {
            border-bottom: 2px solid #EEEEEE;
        }
        
        .ln-feature-category {
            background-color: #F5F5F5;
        }
        
        .ln-feature-category td {
            font-family: 'Roboto Slab', serif;
            font-weight: 600;
            color: #000;
            font-size: 20px;
        }
        
        .ln-plan-name {
            font-family: 'Roboto Slab', serif;
            font-weight: 600;
            color: #000;
            font-size: 16px;
        }
        
        .ln-plan-price {
            font-family: 'Roboto Slab', serif;
            font-size: 24px;
            font-weight: 700;
            margin: 8px 0;
            color: #673AB7;
        }
        
        .ln-popular-plan .ln-plan-price {
            color: #FBC02D;
        }
        
        .ln-plan-description {
            font-size: 14px;
            color: #9E9E9E;
            margin-bottom: 8px;
        }
        
        .ln-plan-button {
            display: block;
            width: 100%;
            padding: 8px;
            background-color: #757575;
            color: white;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-bottom: 12px;
        }
        
        .ln-plan-button:hover {
            background-color: #616161;
            transform: scale(1.02);
        }
        
        .ln-table-button {
            display: block;
            width: 100%;
            padding: 8px;
            background-color: #673AB7;
            color: white;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        
        .ln-table-button:hover {
            background-color: #5E35B1;
            transform: scale(1.02);
        }
        
        .ln-popular-plan .ln-table-button {
            background-color: #FBC02D;
            color: #000;
        }
        
        .ln-popular-plan .ln-table-button:hover {
            background-color: #FFB300;
            transform: scale(1.02);
        }
        
        .ln-check i.fa-check-circle {
            color: #673AB7;
            font-size: 16px;
        }
        
        .ln-dash i.fa-times-circle {
            color: #BDBDBD;
            font-size: 16px;
        }
        
        /* Make first column sticky */
        .ln-comparison-table td:first-child,
        .ln-comparison-table th:first-child {
            position: sticky;
            left: 0;
            background-color: white;
            z-index: 10;
        }
        
        .ln-feature-category td:first-child {
            background-color: #F5F5F5;
        }
        
        /* Plan columns sticky */
        .ln-comparison-table td:nth-child(2),
        .ln-comparison-table th:nth-child(2),
        .ln-comparison-table td:nth-child(3),
        .ln-comparison-table th:nth-child(3),
        .ln-comparison-table td:nth-child(4),
        .ln-comparison-table th:nth-child(4),
        .ln-comparison-table td:nth-child(5),
        .ln-comparison-table th:nth-child(5) {
            position: sticky;
            left: 200px;
            background-color: white;
            z-index: 4;
            min-width: 180px;
        }
        
        /* Adjust z-index for category rows */
        .ln-feature-category td {
            position: sticky;
            left: 0;
            z-index: 6;
            background-color: #F5F5F5;
        }
        
        /* Popular plan highlight */
        .ln-popular-plan {
            background-color: rgba(251, 192, 45, 0.05);
        }
        
        .ln-popular-plan th {
            background-color: rgba(251, 192, 45, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .ln-pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .ln-page-header h1 {
                font-size: 28px;
            }
            
            .ln-page-header p {
                font-size: 16px;
            }
            
            .ln-pricing-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .ln-comparison-header h2 {
                font-size: 24px;
            }
            
            .ln-comparison-header p {
                font-size: 16px;
            }
            
            .ln-comparison-table td:first-child,
            .ln-comparison-table th:first-child {
                min-width: 160px;
            }
            
            .ln-comparison-table td:nth-child(2),
            .ln-comparison-table th:nth-child(2),
            .ln-comparison-table td:nth-child(3),
            .ln-comparison-table th:nth-child(3),
            .ln-comparison-table td:nth-child(4),
            .ln-comparison-table th:nth-child(4),
            .ln-comparison-table td:nth-child(5),
            .ln-comparison-table th:nth-child(5) {
                left: 160px;
                min-width: 150px;
            }
        }


        .checkfix{

            padding-left: 0rem! important;
        }
