/* Retor-futuristische stijl met kleurenpalet: #FF6B6B, #4ECDC4, #FFE66D, #1A535C */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: #1A1A2E;
            color: #FFE66D;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1A1A2E;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border-bottom: 2px solid #FF6B6B;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFE66D;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #4ECDC4;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #FF6B6B;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FF6B6B;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #FFE66D;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('../img/23.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #FFE66D;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #4ECDC4;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FF6B6B;
            color: #1A1A2E;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #FF6B6B;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #FF6B6B;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #16213E;
            position: relative;
        }
        
        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #4ECDC4;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 3px solid #4ECDC4;
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .products h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #16213E;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            border: 1px solid #4ECDC4;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card-content {
            padding: 20px;
        }
        
        .product-card h3 {
            color: #FFE66D;
            margin-bottom: 15px;
        }
        
        .product-card p {
            color: #4ECDC4;
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .prices h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .price-card {
            background-color: #1A1A2E;
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 2px solid #4ECDC4;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            border-color: #FF6B6B;
        }
        
        .price-card h3 {
            color: #FFE66D;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .price-card .price {
            font-size: 2.5rem;
            color: #FF6B6B;
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card li {
            margin-bottom: 10px;
            color: #4ECDC4;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .gallery h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .feedback h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-card {
            background-color: #1A1A2E;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-left: 5px solid #FF6B6B;
        }
        
        .feedback-card p {
            color: #4ECDC4;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback-card h4 {
            color: #FFE66D;
        }
        
        .feedback-card .rating {
            color: #FFE66D;
            margin-bottom: 10px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #4ECDC4;
            border: none;
            color: #1A1A2E;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background-color: #FF6B6B;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FFE66D;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .faq h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #FF6B6B;
        }
        
        .faq-item {
            background-color: #16213E;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .faq-question {
            padding: 20px;
            background-color: #16213E;
            color: #FFE66D;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1A1A2E;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
        }
        
        .faq-question .icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #4ECDC4;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }
        
        .faq-item.active .faq-question .icon {
            transform: rotate(45deg);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: #16213E;
            padding: 50px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 2px solid #4ECDC4;
        }
        
        .contact-form h3 {
            color: #FFE66D;
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: #4ECDC4;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #1A1A2E;
            border: 1px solid #4ECDC4;
            border-radius: 5px;
            color: #FFE66D;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF6B6B;
        }
        
        .form-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #FF6B6B;
            color: #1A1A2E;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .form-btn:hover {
            background-color: #4ECDC4;
        }
        
        /* Footer */
        footer {
            background-color: #0F0F1E;
            padding: 50px 0 20px;
            border-top: 2px solid #FF6B6B;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo h3 {
            color: #FFE66D;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .footer-logo p {
            color: #4ECDC4;
            margin-bottom: 20px;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-links h4 {
            color: #FFE66D;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #4ECDC4;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #FF6B6B;
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-contact h4 {
            color: #FFE66D;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-contact p {
            color: #4ECDC4;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #16213E;
            color: #4ECDC4;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #16213E;
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            border-left: 5px solid #FF6B6B;
        }
        
        .disclaimer h3 {
            color: #FFE66D;
            margin-bottom: 15px;
        }
        
        .disclaimer p {
            color: #4ECDC4;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #16213E;
            color: #4ECDC4;
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 2;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            flex: 1;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #FF6B6B;
            color: #1A1A2E;
        }
        
        .cookie-accept:hover {
            background-color: #4ECDC4;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #4ECDC4;
            border: 1px solid #4ECDC4;
        }
        
        .cookie-decline:hover {
            background-color: #1A1A2E;
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #16213E;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            border: 2px solid #4ECDC4;
        }
        
        .popup-content h3 {
            color: #FFE66D;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .popup-content p {
            color: #4ECDC4;
            margin-bottom: 30px;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #FFE66D;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1A1A2E;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-top: 2px solid #FF6B6B;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .about h2,
            .products h2,
            .prices h2,
            .gallery h2,
            .feedback h2,
            .faq h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

