.container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #1e3a8a;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
       .hero-content-lp h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        p.hero-subtitle-lp {
            font-size: 1.4rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-primary {
            display: inline-block;
            background: #f59e0b;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-primary:hover {
            background: #d97706;
        }
        
        /* Navigation breadcrumbs */
        .breadcrumbs {
            background: #f8fafc;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .breadcrumbs nav {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .breadcrumbs a {
            color: #3b82f6;
            text-decoration: none;
        }
        
        .breadcrumbs a:hover {
            text-decoration: underline;
        }
        
        /* Main content */
        .content-section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.7rem;
            color: #1e293b;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        p.section-intro-lp {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Products using floats */
        .products-container {
            margin-bottom: 60px;
        }
        
        .products-container:after {
            content: "";
            display: table;
            clear: both;
        }
        
       /* .product-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border: 2px solid transparent;
            float: left;
            width: 48%;
            margin-right: 4%;
        } */

        .product-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border: 2px solid transparent;
            width: 70%;
            margin: 0 auto;
        }
        
        .product-card:nth-child(2n) {
            margin-right: 0;
        }
        
        .product-card:hover {
            border-color: #3b82f6;
        }
        
        .product-card h3 {
            font-size: 2.1rem;
            color: #1e293b;
            margin-bottom: 20px;
            font-weight: 700;
            border-top: 5px solid #3b82f6;
            padding-top: 20px;
            margin-top: -20px;
            text-align: center;
        }
         .product-card h3 span {
            font-size: 1.375rem;
         }
        .product-description {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        /* Clean features list without grid */
        .features-list {
            list-style: none;
            margin-bottom: 30px;
            padding: 0;
        }
        
        .features-list li {
            margin-bottom: 16px;
            padding-left: 35px;
            position: relative;
            font-size: 1.15rem;
            color: #374151;
            line-height: 1.8;
        }
        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #10b981;
            font-weight: 700;
            font-size: 1.47rem;
            width: 20px;
            height: 20px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
        }
        
        /* Benefits section */
        .benefits-section {
            background: #f8fafc;
            padding: 80px 0;
        }
        
        .benefits-container:after {
            content: "";
            display: table;
            clear: both;
        }
        
        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 30px;
            float: left;
            width: 31.33%;
            margin-right: 3%;
        }
        
        .benefit-item:nth-child(3n) {
            margin-right: 0;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #3b82f6;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: white;
        }
        
        .benefit-item h4 {
            font-size: 1.4rem;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .benefit-item p {
            color: #64748b;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background: #f8fafc;
            padding: 25px;
            font-weight: bold;
            font-size: 1.1rem;
            color: #1e293b;
        }
        
        .faq-answer {
            padding: 25px;
            color: #64748b;
            line-height: 1.7;
            border-top: 1px solid #e2e8f0;
        }
        
        /* CTA Section */
        .cta-section {
            background: #1e293b;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons a {
            display: inline-block;
            margin: 0 10px;
            margin-bottom: 15px;
        }
        
        .cta-secondary {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .cta-secondary:hover {
            background: white;
            color: #1e293b;
        }
        
        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        footer p {
            opacity: 0.8;
        }
        
        /* Highlight boxes */
        .highlight-box {
            background: #f0f9ff;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .highlight-box.green {
            background: #f0fdf4;
        }
        
        .highlight-box h5 {
            color: #1e40af;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .highlight-box.green h5 {
            color: #166534;
        }
        
        .highlight-box p {
            color: #1e40af;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .highlight-box.green p {
            color: #166534;
        }
        
        /* Responsive - Mobile */
        @media (max-width: 768px) {
           .hero-content-lp h1 {
                font-size: 2.5rem;
            }
            
            p.hero-subtitle-lp {
                font-size: 1.2rem;
            }
            
            .product-card {
                float: none;
                width: 100%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .benefit-item {
                float: none;
                width: 100%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .product-card {
                padding: 30px 25px;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .cta-buttons a {
                display: block;
                margin: 10px auto;
                width: 80%;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
         .hero-content-lp h1 {
                font-size: 2rem;
            }
            
            .product-card {
                padding: 25px 20px;
            }
        }