/* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
            font-size: 12px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 {
            font-size: 32px;
        }
        
        h2 {
            font-size: 24px;
        }
        
        h3 {
            font-size: 20px;
        }
        
        h4, h5, h6 {
            font-size: 12px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 12px;
        }
        
        /* Colors */
        :root {
            --primary: #1865c4;
            --primary-light: #4285f4;
            --primary-dark: #1557b0;
            --secondary: #34a853;
            --light: #f8f9fa;
            --dark: #202124;
            --gray: #5f6368;
            --gray-light: #e8eaed;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            text-decoration: none;
            border: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--white);
            color: var(--dark);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            color: var(--white);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }
        
        .btn-text {
            background-color: transparent;
            color: var(--primary);
            border: none;
            padding: 10px 0;
            font-weight: 600;
        }
        
        .btn-text:hover {
            text-decoration: underline;
        }
        
        .btn-demo {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-right: 5px;
        }
        
        .btn-demo:hover {
            background-color: var(--primary-light);
            color: var(--white);
        }
        
        .btn-buy {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-buy:hover {
            background-color: #2d8e47;
        }
        
        /* Header */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--primary);
            font-size: 28px;
            padding-left: 20px;
        }
        
        .logo span {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 14px;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray);
            cursor: pointer;
            padding-right: 20px;
        }
        
        .mobile-menu-btn:hover {
            color: var(--primary);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: var(--white);
            border-top: 1px solid #e2e8f0;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 15px 0;
        }
        
        .mobile-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            display: block;
            padding: 8px 0;
            font-size: 12px;
        }
        
        .mobile-menu a:hover {
            color: var(--primary);
        }
        
        .mobile-menu .btn {
            margin-top: 10px;
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            background-color: var(--primary);
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-content {
            text-align: center;
        }
        
        .hero h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 14px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Particle Canvas */
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray);
            font-size: 12px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .feature-icon {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            z-index: 10;
        }
        
        .pricing-header {
            padding: 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .pricing-card.featured .pricing-header {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .pricing-name {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .pricing-price {
            display: flex;
            align-items: baseline;
            margin-bottom: 10px;
        }
        
        .pricing-price .amount {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .pricing-price .period {
            margin-left: 5px;
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-card.featured .pricing-price .period {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-desc {
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-card.featured .pricing-desc {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-features {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .pricing-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-features li i {
            color: #10b981;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .pricing-card .btn {
            width: 100%;
            margin-top: auto;
        }
        
        .popular-badge {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 8px;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .products-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        .products-wrapper {
            overflow: hidden;
            position: relative;
            cursor: grab;
            touch-action: pan-y;
        }
        
        .products-wrapper.dragging {
            cursor: grabbing;
        }
        
        .products-grid {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
            will-change: transform;
            backface-visibility: hidden;
            perspective: 1000;
            transform: translateZ(0);
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 0 0 200px;
            width: 200px;
            user-select: none;
            backface-visibility: hidden;
            transform: translateZ(0);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-price {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 1px 5px;
            border-radius: 8px;
            z-index: 2;
        }
        
        .product-price .amount {
            font-size: 12px;
            font-weight: 700;
        }
        
        .product-price .period {
            font-size: 12px;
            margin-left: 3px;
            opacity: 0.8;
        }
        
        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--white);
            padding: 1px 4px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .product-title {
            font-size: 12px;
            margin-bottom: 20px;
            color: var(--dark);
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
            max-width: 100%; 
        }
        
        .product-buttons {
            display: flex;
            margin-top: auto;
        }
        
        .product-buttons .btn {
            flex: 1;
            text-align: center;
        }
        
        /* Product Navigation */
        .product-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--white);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        
        .product-nav:hover {
            background-color: var(--primary);
            color: var(--white);
            opacity: 1;
        }
        
        .product-nav.prev {
            left: 10px;
        }
        
        .product-nav.next {
            right: 10px;
        }
        
        .product-nav.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .product-nav.disabled:hover {
            background-color: var(--white);
            color: var(--gray);
        }
        
        .product-dots {
            display: none;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--gray-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        .dot.disabled {
            cursor: not-allowed;
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 12px;
            color: var(--gray);
        }
        
        .blog-meta i {
            color: var(--primary);
        }
        
        .blog-title {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 12px;
        }
        
        .blog-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            align-self: flex-start;
            font-size: 12px;
        }
        
        .blog-link:hover {
            text-decoration: underline;
        }
        
        .blog-footer {
            text-align: center;
            margin-top: 50px;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .testimonials-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        .testimonials-wrapper {
            overflow: hidden;
            position: relative;
            cursor: grab;
            touch-action: pan-y;
        }
        
        .testimonials-wrapper.dragging {
            cursor: grabbing;
        }
        
        .testimonials-grid {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
            will-change: transform;
            backface-visibility: hidden;
            perspective: 1000;
            transform: translateZ(0);
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            border: 1px solid var(--gray-light);
            flex: 0 0 300px;
            width: 300px;
            user-select: none;
            backface-visibility: hidden;
            transform: translateZ(0);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--primary-light);
        }
        
        .testimonial-info h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 12px;
        }
        
        .testimonial-info p {
            color: var(--gray);
            font-size: 12px;
            margin: 0;
        }
        
        .testimonial-rating {
            color: #fbbf24;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            color: var(--gray);
            font-style: italic;
            position: relative;
            padding-left: 20px;
            font-size: 12px;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 30px;
            color: var(--primary-light);
            opacity: 0.5;
            line-height: 1;
        }
        
        /* Testimonial Navigation */
        .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--white);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        
        .testimonial-nav:hover {
            background-color: var(--primary);
            color: var(--white);
            opacity: 1;
        }
        
        .testimonial-nav.prev {
            left: 10px;
        }
        
        .testimonial-nav.next {
            right: 10px;
        }
        
        .testimonial-nav.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .testimonial-nav.disabled:hover {
            background-color: var(--white);
            color: var(--gray);
        }
        
        .testimonial-dots {
            display: none;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--gray-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        .testimonial-dot.disabled {
            cursor: not-allowed;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--white);
            border: none;
            width: 100%;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: var(--light);
        }
        
        .faq-question i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            color: var(--gray);
            font-size: 12px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 20px;
        }
        
        .faq-item.active .faq-question {
            background-color: var(--light);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
        }
        
        .cta h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 12px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray);
            font-size: 12px;
        }
        
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        
        /* Mission Vision Section */
        .mission-vision {
            padding: 80px 0;
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .mission-vision-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .mission-vision-icon {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .mission-vision-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .mission-vision-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        /* Values Section */
        .values {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
        }
        
        .team-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.05);
        }
        
        .team-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .team-name {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .team-position {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .team-bio {
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 12px;
        }
        
        .team-social {
            display: flex;
            gap: 15px;
        }
        
        .team-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--light);
            border-radius: 50%;
            color: var(--gray);
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Timeline Section */
        .timeline {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--primary-light);
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 40px;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 40px;
        }
        
        .timeline-content {
            background-color: var(--white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        
        .timeline-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .timeline-title {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .timeline-text {
            color: var(--gray);
            font-size: 12px;
        }
        
        .timeline-dot {
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 50%;
            border: 4px solid var(--white);
            box-shadow: var(--shadow);
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray);
            font-size: 12px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        .service-card .btn {
            margin-top: 20px;
            align-self: flex-start;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .process-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .process-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .process-icon {
            color: var(--primary);
            font-size: 36px;
            margin: 20px 0;
        }
        
        .process-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .process-card p {
            color: var(--gray);
            flex-grow: 1;
            font-size: 12px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--gray);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 300px;
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .blog-main {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .blog-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 12px;
            color: var(--gray);
        }
        
        .blog-meta i {
            color: var(--primary);
        }
        
        .blog-title {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 12px;
        }
        
        .blog-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            align-self: flex-start;
            font-size: 12px;
        }
        
        .blog-link:hover {
            text-decoration: underline;
        }
        
        /* Blog Sidebar */
        .sidebar-widget {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        
        .sidebar-widget h3 {
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-size: 16px;
        }
        
        .sidebar-widget h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        /* Search Widget */
        .search-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .search-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--gray-light);
            border-radius: 8px 0 0 8px;
            font-size: 12px;
            outline: none;
        }
        
        .search-input:focus {
            border-color: var(--primary);
        }
        
        .search-button {
            padding: 10px 15px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 12px;
            transition: background-color 0.3s ease;
        }
        
        .search-button:hover {
            background-color: var(--primary-dark);
        }
        
        /* Categories Widget */
        .category-list {
            list-style: none;
        }
        
        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-light);
            font-size: 12px;
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-item a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .category-item a:hover {
            color: var(--primary);
        }
        
        .category-count {
            background-color: var(--gray-light);
            color: var(--gray);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
        }
        
        /* Recent Posts Widget */
        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-image {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content {
            flex: 1;
        }
        
        .recent-post-title {
            font-size: 12px;
            margin-bottom: 5px;
            color: var(--dark);
            line-height: 1.4;
        }
        
        .recent-post-title a {
            color: var(--dark);
            text-decoration: none;
        }
        
        .recent-post-title a:hover {
            color: var(--primary);
        }
        
        .recent-post-date {
            font-size: 10px;
            color: var(--gray);
        }
        
        /* Tags Widget */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: var(--gray-light);
            color: var(--gray);
            border-radius: 20px;
            font-size: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--white);
            color: var(--dark);
            border-radius: 8px;
            text-decoration: none;
            font-size: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .page-link:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .page-link.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Newsletter Widget */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-input {
            padding: 10px 15px;
            border: 1px solid var(--gray-light);
            border-radius: 8px;
            font-size: 12px;
            outline: none;
        }
        
        .newsletter-input:focus {
            border-color: var(--primary);
        }
        
        .newsletter-button {
            padding: 10px 15px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-button:hover {
            background-color: var(--primary-dark);
        }
        
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            z-index: 10;
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            padding: 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .pricing-card.featured .pricing-header {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .pricing-name {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .pricing-price {
            display: flex;
            align-items: baseline;
            margin-bottom: 10px;
        }
        
        .pricing-price .amount {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .pricing-price .period {
            margin-left: 5px;
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-card.featured .pricing-price .period {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-desc {
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-card.featured .pricing-desc {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-features {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .pricing-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--gray);
            font-size: 12px;
        }
        
        .pricing-features li i {
            color: #10b981;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .pricing-card .btn {
            width: 100%;
            margin-top: auto;
        }
        
        .popular-badge {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 8px;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Comparison Table Section */
        .comparison {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .comparison-table th {
            background-color: var(--primary);
            color: var(--white);
            font-weight: 600;
            font-size: 12px;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: var(--light);
        }
        
        .comparison-table .feature-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 12px;
        }
        
        .comparison-table .check {
            color: var(--secondary);
            font-size: 16px;
            text-align: center;
        }
        
        .comparison-table .cross {
            color: #ef4444;
            font-size: 16px;
            text-align: center;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h3 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
            font-size: 12px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-light);
            border-radius: 8px;
            font-size: 12px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Contact Info Card */
        .contact-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .contact-details p {
            color: var(--gray);
            margin-bottom: 0;
            font-size: 12px;
        }
        
        .contact-details a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .contact-details a:hover {
            text-decoration: underline;
        }
        
        /* Map Section */
        .map {
            padding: 0 0 80px;
            background-color: var(--light);
        }
        
        .map-container {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        #footer-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-size: 20px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-col p {
            color: #cbd5e1;
            margin-bottom: 20px;
            font-size: 12px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #cbd5e1;
            text-decoration: none;
            display: inline-block;
            font-size: 12px;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #cbd5e1;
            font-size: 12px;
        }
        
        .contact-item i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #cbd5e1;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 12px;
            position: relative;
            z-index: 2;
        }
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .products-container, .testimonials-container {
                padding: 0 40px;
            }
            .about-content {
                flex-direction: column;
            }
            
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
            .blog-container {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            h3 {
                font-size: 18px;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .section-header h2::after {
                width: 60px;
            }
            
            /* Timeline responsive */
            .timeline-container::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 50px !important;
                padding-right: 0 !important;
                text-align: left !important;
                left: 0 !important;
            }
            
            .timeline-dot {
                left: 10px !important;
                right: auto !important;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            /* Comparison table responsive */
            .comparison-table {
                font-size: 10px;
            }
            
            .comparison-table th, .comparison-table td {
                padding: 10px 5px;
            }
            
            /* Smaller button for mobile */
            .header-container .btn-primary {
                padding: 8px 16px;
                font-size: 12px;
                border-radius: 6px;
            }
            
            .mobile-menu .btn-primary {
                padding: 10px 16px;
                font-size: 12px;
                border-radius: 6px;
            }
            
            /* Product buttons for mobile */
            .product-buttons {
                flex-direction: column;
            }
            
            .product-buttons .btn {
                margin-bottom: 10px;
            }
            
            .product-buttons .btn:last-child {
                margin-bottom: 0;
            }
            
            .products-container, .testimonials-container {
                padding: 0 30px;
            }
            
            .product-card {
                flex: 0 0 250px;
                width: 250px;
            }
            
            .testimonial-card {
                flex: 0 0 280px;
                width: 280px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            
            /* Scroll to top button for mobile */
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            /* Even smaller button for very small screens */
            .header-container .btn-primary {
                padding: 6px 12px;
                font-size: 12px;
                max-width: 100px;
            }
            
            .products-container, .testimonials-container {
                padding: 0 20px;
            }
            
            .product-card {
                flex: 0 0 220px;
                width: 220px;
            }
            
            .testimonial-card {
                flex: 0 0 250px;
                width: 250px;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
        
        /* Particle Canvas Styles */
#particles-canvas, #footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}