:root {
            --primary: #5D8AA8;
            --secondary: #F0F8FF;
            --accent: #FF6B6B;
            --text: #2C3E50;
            --background: #FFFFFF;
            --muted: #95A5A6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);}
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--background);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 2rem;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            margin-top: 60px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }
        
        .btn:hover {
            transform: translateY(-3px);
        }
        
        .about {
            background: var(--secondary);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }
        
        .pricing-table th,
        .pricing-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .review-slider {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .review-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .review {
            min-width: 100%;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #ddd;
        }
        
        .faq-question {
            padding: 1rem 0;
            cursor: pointer;
            font-weight: bold;
        }
        
        .faq-answer {
            padding-bottom: 1rem;
            display: none;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--text);
            color: white;
            padding: 1rem;
            text-align: center;
            display: none;
        }
        
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            background: var(--primary);
            color: white;
            padding: 1rem 0;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        footer {
            background: var(--text);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes marquee {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                right: 0;
                top: 100%;
                background: white;
                flex-direction: column;
                width: 100%;
                text-align: center;
                transform: translateY(0%);
                opacity: 0;
                transition: all 0.3s ease;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }

:root {
                --primary: #5D8AA8;
                --secondary: #F0F8FF;
                --accent: #FF6B6B;
                --text: #2C3E50;
                --background: #FFFFFF;
                --muted: #95A5A6;
            }
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                line-height: 1.6;
                color: var(--text);
                background-color: var(--background);}
            
            main {
                max-width: 1000px;
                margin: 0 auto;
            }
            
            h1 {
                color: var(--primary);
                margin-bottom: 2rem;
                text-align: center;
                font-size: 2.5rem;
            }
            
            h2 {
                color: var(--primary);
                margin: 3rem 0 1.5rem 0;
                padding-bottom: 0.5rem;
                border-bottom: 2px solid var(--secondary);
            }
            
            .testimonial-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
                margin: 2rem 0;
            }
            
            .testimonial-card {
                background: white;
                padding: 2rem;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                position: relative;
                transition: transform 0.3s ease;
            }
            
            .testimonial-card:hover {
                transform: translateY(-5px);
            }
            
            .testimonial-content {
                font-style: italic;
                margin-bottom: 1.5rem;
                position: relative;
            }
            
            .testimonial-content::before {
                content: '"';
                font-size: 4rem;
                color: var(--secondary);
                position: absolute;
                top: -1rem;
                left: -1rem;
                line-height: 1;
            }
            
            .testimonial-author {
                display: flex;
                align-items: center;
            }
            
            .author-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: var(--secondary);
                margin-right: 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                color: var(--primary);
            }
            
            .author-info h3 {
                margin: 0;
                font-size: 1.1rem;
            }
            
            .author-info p {
                margin: 0;
                color: var(--muted);
                font-size: 0.9rem;
            }
            
            .rating {
                color: #FFD700;
                margin: 0.5rem 0;
            }
            
            .industry-section {
                margin: 3rem 0;
            }
            
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
                margin: 2rem 0;
            }
            
            .stat-card {
                background: white;
                padding: 1.5rem;
                border-radius: 8px;
                box-shadow: 0 3px 10px rgba(0,0,0,0.1);
                text-align: center;
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: bold;
                color: var(--primary);
                margin-bottom: 0.5rem;
            }
            
            .stat-label {
                color: var(--muted);
                font-size: 0.9rem;
            }
            
            .case-study {
                background: var(--secondary);
                padding: 2rem;
                border-radius: 10px;
                margin: 2rem 0;
            }
            
            .case-study h3 {
                color: var(--primary);
                margin-bottom: 1rem;
            }
            
            .testimonial-form {
                background: white;
                padding: 2.5rem;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                margin: 3rem 0;
            }
            
            .form-group {
                margin-bottom: 1.5rem;
            }
            
            .form-group label {
                display: block;
                margin-bottom: 0.5rem;
                font-weight: bold;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                width: 100%;
                padding: 0.8rem;
                border: 1px solid #ddd;
                border-radius: 5px;
                font-size: 1rem;
            }
            
            .form-group textarea {
                height: 120px;
                resize: vertical;
            }
            
            .submit-btn {
                background: var(--primary);
                color: white;
                padding: 12px 30px;
                border: none;
                border-radius: 5px;
                font-size: 1rem;
                font-weight: bold;
                cursor: pointer;
                transition: background 0.3s ease;
            }
            
            .submit-btn:hover {
                background: var(--accent);
            }
            
            @media (max-width: 768px) {
                body {}
                
                h1 {
                    font-size: 2rem;
                }
                
                .testimonial-grid {
                    grid-template-columns: 1fr;
                }
                
                .stats-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .testimonial-form {
                    padding: 1.5rem;
                }
            }

