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

        :root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #1a1a1a;
            --accent-bg: #2a2a2a;
            --card-bg: #141414;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --text-muted: #808080;
            --accent-color: #ffffff;
            --border-color: #333333;
            --hex-color: #404040;
            --gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* Hexagon Background Elements */
.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--hex-color) 1px, transparent 0);
    background-size: 60px 60px;
    z-index: 1;
}

.floating-hex {
    position: absolute;
    width: 40px;
    height: 23px;
    background: transparent;
    border: 1px solid var(--hex-color);
    opacity: 0.1;
    animation: hexDrift 15s linear infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes hexDrift {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.bg-floating-hex {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    z-index: 2;
    animation: hexFloat 25s linear infinite, colorRotate 20s ease-in-out infinite;
}

@keyframes hexFloat {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.8; 
    }
    95% { 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(-120px) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes colorRotate {
    0% { 
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
    33% { 
        border-color: rgba(128, 128, 128, 0.1);
        background: rgba(128, 128, 128, 0.05);
    }
    66% { 
        border-color: rgba(64, 64, 64, 0.1);
        background: rgba(64, 64, 64, 0.05);
    }
    100% { 
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
}

        /* Header */
        header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(15px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
			padding: 5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }
		
		a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }
		
		a:hover {
            color: var(--text-primary);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .hero .tagline {
            font-size: 1.8rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .cta-primary, .cta-secondary {
            padding: 18px 35px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--border-color);
        }

        .cta-primary {
            background: var(--text-primary);
            color: var(--primary-bg);
            border-color: var(--text-primary);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .cta-secondary {
            background: transparent;
            color: var(--text-primary);
        }

        .cta-secondary:hover {
            background: var(--accent-bg);
            transform: translateY(-2px);
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 100px 0;
            background: var(--secondary-bg);
            position: relative;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .why-card {
            text-align: center;
            padding: 2rem;
        }

        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--accent-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid var(--border-color);
        }

        .why-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .why-card p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background: var(--primary-bg);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--text-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--text-primary);
            box-shadow: var(--shadow);
            background: var(--secondary-bg);
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .product-card h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            font-weight: 700;
            flex: 1;
        }

        .status-badge {
            background: var(--accent-bg);
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
            margin-left: 1rem;
            white-space: nowrap;
        }

        .product-card p {
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            color: var(--text-secondary);
            padding: 0.5rem 0;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-item::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--text-primary);
            font-weight: bold;
        }

        .product-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pricing {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .more-info-btn {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .more-info-btn:hover {
            background: var(--accent-bg);
            border-color: var(--text-primary);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--secondary-bg);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .photo-placeholder {
            background: var(--accent-bg);
            border: 2px dashed var(--border-color);
            border-radius: 12px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }

        .photo-placeholder:hover {
            border-color: var(--text-primary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--card-bg);
            margin: 5% auto;
            padding: 3rem;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
        }

        .modal-title {
            font-size: 2rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .close {
            color: var(--text-muted);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: var(--text-primary);
        }

        .modal-body h4 {
            font-size: 1.4rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
        }

        .modal-body p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .modal-body ul {
            color: var(--text-secondary);
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--primary-bg);
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact-item strong {
            color: var(--text-primary);
            margin-right: 1rem;
            min-width: 80px;
        }

        .contact-form {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--primary-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--text-primary);
            color: var(--primary-bg);
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* Footer */
        footer {
            background: var(--primary-bg);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
        }

        footer p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero .tagline {
                font-size: 1.4rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

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

        /* Animations */
        html {
            scroll-behavior: smooth;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
		
		
		/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 2px solid var(--border-color);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--text-primary);
}

.cookie-text a {
    color: var(--text-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookie-btn.accept {
    background: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
}

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.cookie-btn.decline:hover {
    background: var(--accent-bg);
    color: var(--text-primary);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.cookie-btn.settings:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.cookie-modal-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-category h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-bg);
    transition: 0.3s;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--text-primary);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
    background-color: var(--primary-bg);
}

.cookie-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        min-width: 80px;
        padding: 10px 16px;
    }
}
