        /* Randomly generated styles */
        :root {
            --primary: #7a3cb8;
            --secondary: #e8c547;
            --accent: #4dbd90;
            --text: #2d2d2d;
            --light: #f5f0ff;
            --dark: #1a1a2e;
        }
        
        @font-face {
            font-family: 'MainFont';
            src: url('data:font/woff2;base64,d09GMgABAAAAA...') format('woff2');
        }
        
        @font-face {
            font-family: 'HeadingFont';
            src: url('data:font/woff2;base64,d09GMgABAAAAA...') format('woff2');
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'MainFont', sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-family: 'HeadingFont', cursive;
            font-size: 28px;
            color: var(--secondary);
            text-decoration: none;
        }
        
        .nav-desktop {
            display: none;
        }
        
        .nav-desktop a {
            color: white;
            text-decoration: none;
            margin-left: 30px;
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .nav-desktop a:hover {
            color: var(--secondary);
        }
        
        .burger-menu {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
        }
        
        .burger-line {
            width: 100%;
            height: 3px;
            background-color: white;
            transition: all 0.3s;
        }
        
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            transform: translateX(100%);
            transition: transform 0.3s;
            z-index: 999;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 18px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h1, h2, h3 {
            font-family: 'HeadingFont', sans-serif;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 42px;
            color: var(--primary);
        }
        
        h2 {
            font-size: 36px;
            color: var(--dark);
        }
        
        h3 {
            font-size: 28px;
            color: var(--accent);
        }
        
        p {
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            text-align: center;
            padding: 120px 0;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        
        .hero h1 {
            color: white;
            font-size: 48px;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: -60px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 50px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .about {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background-color: var(--secondary);
            opacity: 0.2;
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 20px 20px 0 var(--secondary);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .products {
            background-color: white;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .price {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            margin: 10px 0;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
        }
        
        .testimonials {
            background-color: var(--light);
            text-align: center;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        .faq {
            background-color: white;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--light);
            cursor: pointer;
            font-weight: bold;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 20px;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .contact-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
        }
        
        .research {
            background-color: var(--primary);
            color: white;
        }
        
        .research h2 {
            color: white;
        }
        
        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .research-card {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            position: relative;
        }
        
        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: white;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        .cookie-notice p {
            margin: 0 15px 15px 0;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .disclaimer {
            font-size: 14px;
            opacity: 0.7;
            margin-top: 20px;
        }
        
        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .parallax-content {
            position: relative;
            z-index: 1;
        }
        
        /* Responsive styles */
        @media (min-width: 768px) {
            .nav-desktop {
                display: block;
            }
            
            .burger-menu {
                display: none;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .hero h1 {
                font-size: 56px;
            }
        }
        
        @media (max-width: 767px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }