
      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
      .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
      header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
      header .container { display: flex; align-items: center; justify-content: space-between; }
      .logo img { height: 40px; }
      nav ul { display: flex; list-style: none; }
      nav ul li { margin-left: 20px; }
      nav ul li a { text-decoration: none; color: #333; font-weight: 500; }
      
      .header-actions { display: flex; align-items: center; gap: 20px; }
      .language-switcher { display: flex; gap: 10px; }
      .lang-switch { 
        padding: 4px 8px; 
        text-decoration: none; 
        color: #666; 
        border-radius: 4px; 
        font-size: 14px; 
        font-weight: 500;
        transition: all 0.2s;
      }
      .lang-switch:hover { background: #f5f5f5; color: #333; }
      .lang-switch.active { background: #6366f1; color: white; }
      .feature-item h3 { margin-bottom: 15px; color: #6366f1; }
      
      .btn { display: inline-block; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; transition: all 0.2s ease; }
      .btn-primary { background: #6366f1; color: white; }
      .btn-primary:hover { background: #5855eb; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); }
      .btn-secondary { border: 1px solid #6366f1; color: #6366f1; background: transparent; }
      .btn-secondary:hover { background: #6366f1; color: white; }
      .btn-large { padding: 12px 24px; font-size: 18px; }
      .hero { padding: 80px 0; text-align: center; background-color: #f9f9ff; }
      .hero h1 { font-size: 42px; margin-bottom: 20px; color: #333; }
      .hero p { font-size: 20px; color: #666; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }
      .hero-image { margin-top: 50px; }
      .hero-image img { max-width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
      
      .hero-buttons { display: flex; gap: 15px; margin-top: 30px; justify-content: center; flex-wrap: wrap; }
      
      .products { padding: 80px 0; background-color: #fff; }
      .products h2 { text-align: center; margin-bottom: 50px; font-size: 36px; }
      .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
      .product-item { padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 1px solid #f0f0f0; }
      .product-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1); border-color: #6366f1; }
      .product-item h3 { margin-bottom: 15px; color: #6366f1; font-size: 20px; }
      .product-item p { margin-bottom: 20px; color: #666; line-height: 1.6; }
      .product-item .btn { margin-top: auto; }
      
              footer { padding: 40px 0; background: #f8fafc; text-align: center; margin-top: 80px; border-top: 1px solid #e2e8f0; }
        footer .container { display: flex; flex-direction: column; align-items: center; gap: 15px; }
        .footer-links { display: flex; align-items: center; gap: 15px; font-size: 14px; }
        .footer-links a { color: #6366f1; text-decoration: none; }
        .footer-links a:hover { text-decoration: underline; }
        .footer-links span { color: #ccc; }
      
              @media (max-width: 768px) {
          .product-grid { grid-template-columns: 1fr; }
          .header-actions { flex-direction: column; gap: 15px; }
          nav ul { display: none; }
          .hero h1 { font-size: 28px; }
          .hero p { font-size: 16px; }
          .hero-buttons { flex-direction: column; align-items: center; }
          .hero-buttons .btn { width: 100%; max-width: 280px; }
          .footer-links { flex-wrap: wrap; }
        }
    