        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #10b981;
        }

        .contact-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white !important;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #10b981;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.3s ease;
            padding: 5rem 2rem 2rem;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-links {
            list-style: none;
            padding: 0;
        }

        .mobile-menu-links li {
            margin-bottom: 0.5rem;
        }

        .mobile-menu-links a {
            display: block;
            padding: 1rem;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-menu-links a:hover {
            background: #f0fdf4;
            color: #10b981;
            transform: translateX(5px);
        }

        .mobile-menu-links .contact-btn {
            margin-top: 1rem;
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .page-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
            color: #333;
        }

        .page-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
        }

        /* Product Detail Section */
        .product-detail {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            scroll-margin-top: 100px;
        }

        .product-header {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e5e7eb;
        }

        .product-icon {
            text-align: center;
            background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 350px;
            padding: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .product-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .product-icon:hover img {
            transform: scale(1.05);
        }

        .product-info h2 {
            font-size: 2.5rem;
            color: #10b981;
            margin-bottom: 1rem;
        }

        .product-badge {
            display: inline-block;
            background: #fef3c7;
            color: #92400e;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-description {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            margin-top: 1rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .spec-item {
            background: #f8faf9;
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid #10b981;
        }

        .spec-label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .spec-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
        }

        .section-divider {
            margin: 3rem 0;
            border: 0;
            border-top: 2px solid #e5e7eb;
        }

        .feature-section {
            margin: 3rem 0;
        }

        .feature-section h3 {
            font-size: 1.8rem;
            color: #10b981;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 1rem;
            margin-bottom: 0.8rem;
            background: #f8faf9;
            border-radius: 10px;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .feature-list li::before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .microbe-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .microbe-section h4 {
            color: #059669;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .microbe-section p {
            color: #166534;
            line-height: 1.8;
        }

        .usage-guide {
            background: #fff7ed;
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #fbbf24;
        }

        .usage-guide h4 {
            color: #92400e;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 20px;
        }

        .contact-cta h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .contact-cta a {
            display: inline-block;
            background: white;
            color: #10b981;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .contact-cta a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        footer {
            background: #1a1a1a;
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .comparison-table th {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.2rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background: #f8faf9;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu,
            .mobile-menu-overlay {
                display: block;
            }

            .product-header {
                grid-template-columns: 1fr;
            }

            .product-icon {
                height: 250px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            .product-detail {
                padding: 1.5rem;
            }
        }
