:root {
            --primary-color: #00bcd4; /* Türkisblau */
            --secondary-color: #f06292; /* Hellrosa */
            --background-color: #1a1a1a; /* Dunkelgrau */
            --card-background-color: #2c2c2c; /* Mitteldunkelgrau */
            --text-color: #e0e0e0; /* Hellgrau */
            --heading-color: #ffffff; /* Weiß */
            --font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            --container-max-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        .container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            font-weight: 500;
            font-size: 1.1em;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--card-background-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger-menu.active .line2 {
                opacity: 0;
            }

            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 100px 0;
            min-height: 100vh;
        }
        
        h1, h2, h3 {
            color: var(--heading-color);
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5em;
            text-align: center;
        }

        h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 10px auto 0;
        }

        h3 {
            font-size: 1.8em;
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--primary-color);
            color: var(--background-color);
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 50px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1em;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            color: var(--heading-color);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background-color: var(--background-color);
            padding: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            animation: pan 20s linear infinite alternate;
        }
        
        @keyframes pan {
            0% {
                transform: scale(1.1) translate(0, 0);
            }
            100% {
                transform: scale(1.2) translate(-5%, 5%);
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 4.5em;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
            animation: fadeInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.5em;
            margin: 20px 0 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .about .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about .text-content {
            animation: fadeInRight 1s ease-out;
        }

        .about img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: fadeInLeft 1s ease-out;
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .products .product-card {
            background-color: var(--card-background-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .products .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .prices .price-card-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .prices .price-card {
            background-color: var(--card-background-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .prices .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .prices .price-card h3 {
            color: var(--primary-color);
        }

        .prices .price-card .price {
            font-size: 3em;
            font-weight: bold;
            color: var(--heading-color);
            margin: 20px 0;
        }

        .prices .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .prices .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #444;
        }

        .prices .price-card ul li:last-child {
            border-bottom: none;
        }

        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .gallery .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery .gallery-item img:hover {
            transform: scale(1.1);
        }

        .feedback .slider-container {
            position: relative;
            max-width: 800px;
            margin: 50px auto;
            overflow: hidden;
        }

        .feedback .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback .slide {
            min-width: 100%;
            padding: 30px;
            background-color: var(--card-background-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .feedback .quote {
            font-style: italic;
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        .feedback .author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .feedback .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            z-index: 10;
        }

        .feedback .prev {
            left: 0;
            border-radius: 0 5px 5px 0;
        }

        .feedback .next {
            right: 0;
            border-radius: 5px 0 0 5px;
        }

        .faq .faq-grid {
            display: grid;
            gap: 20px;
            margin-top: 50px;
        }

        .faq .faq-item {
            background-color: var(--card-background-color);
            padding: 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq .faq-item:hover {
            background-color: #383838;
        }

        .faq .question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color);
        }

        .faq .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding-top: 0;
        }

        .faq .answer.active {
            max-height: 200px; /* Adjust based on content */
            padding-top: 15px;
        }

        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: var(--card-background-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: bold;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 12px;
            background-color: #333;
            border: 1px solid #555;
            color: var(--text-color);
            border-radius: 5px;
            font-size: 1em;
        }

        footer {
            background-color: #0d0d0d;
            padding: 50px 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        footer .footer-col {
            flex: 1;
            padding: 20px;
            min-width: 250px;
        }

        footer h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
        }

        footer h4::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        .disclaimer {
            padding: 20px;
            text-align: center;
            font-size: 0.8em;
            color: #888;
            background-color: #111;
            border-top: 1px solid #333;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(5px);
            padding: 20px;
            color: var(--text-color);
            text-align: center;
            z-index: 2000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner .btn {
            margin-left: 20px;
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .animated {
            opacity: 0;
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            will-change: opacity, transform;
        }

        .animated.fadeInUp {
            transform: translateY(50px);
        }

        .animated.fadeInRight {
            transform: translateX(50px);
        }

        .animated.fadeInLeft {
            transform: translateX(-50px);
        }

        .animated.is-visible {
            opacity: 1;
            transform: translateY(0) translateX(0);
        }
        
        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 2001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--card-background-color);
            margin: auto;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            animation: modalOpen 0.5s ease-out;
        }
        
        @keyframes modalOpen {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        .modal-content h3 {
            color: var(--primary-color);
        }

