
        :root {
            --primary-color: #4B5320; /* Dunkles Olivgrün */
            --secondary-color: #6B8E23; /* Etwas helleres Oliv */
            --background-color: #2F3E22; /* Sehr dunkles Oliv */
            --text-color: #E6E6FA; /* Lavendel, für guten Kontrast */
            --card-bg: #405022;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .header {
            background: rgba(47, 62, 34, 0.9);
            box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
        }

        .logo .sitename {
            color: var(--text-color);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .navmenu a {
            color: var(--text-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navmenu a:hover, .navmenu .active {
            color: var(--secondary-color);
        }

        .hero {
            padding: 120px 0 60px 0;
            background-color: var(--background-color);
            color: var(--text-color);
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .hero-img img {
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .download-btn {
            background: var(--secondary-color);
            color: var(--background-color);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }

        .download-btn:hover {
            background: var(--primary-color);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .section-title {
            text-align: center;
            padding-bottom: 30px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about .feature-card {
            background-color: var(--card-bg);
            border: 1px solid var(--primary-color);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .about .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .about .feature-card i {
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .services .icon-box {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            border: 1px solid var(--primary-color);
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .services .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .services .icon-box i {
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

        .services .icon-box h4 {
            color: var(--text-color);
            font-weight: 600;
        }

        .services .icon-box p {
            color: #d1d1d1;
        }

        .feature-details .swiper-slide {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid var(--primary-color);
        }

        .feature-details h3 {
            color: var(--secondary-color);
            font-weight: 700;
        }

        .feature-details ul li {
            list-style: none;
            padding: 5px 0 5px 30px;
            position: relative;
            color: var(--text-color);
        }

        .feature-details ul i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary-color);
        }

        .testimonials {
            background-color: var(--background-color);
            padding: 60px 0;
        }

        .testimonials .testimonial-item {
            background: var(--card-bg);
            border: 1px solid var(--primary-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .testimonials .testimonial-img {
            width: 90px;
            border-radius: 50%;
            border: 5px solid var(--primary-color);
        }

        .testimonials .stars i {
            color: #FFD700;
        }

        .pricing .pricing-item {
            background: var(--card-bg);
            border: 1px solid var(--primary-color);
            padding: 40px;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .pricing .pricing-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .pricing .pricing-item.featured {
            border: 3px solid var(--secondary-color);
        }

        .pricing .pricing-item h3 {
            color: var(--secondary-color);
            font-weight: 700;
        }

        .pricing .pricing-item h4 {
            color: white;
            font-weight: 300;
            font-size: 2.5rem;
        }

        .pricing .pricing-item ul li i {
            color: var(--secondary-color);
        }

        .pricing .pricing-item ul li.na i {
            color: #888;
        }

        .contact .php-email-form {
            background: var(--card-bg);
            border: 1px solid var(--primary-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .contact .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
        }

        .contact .form-control:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary-color);
        }
        
        .contact button {
            background: var(--secondary-color);
            border: 0;
            padding: 10px 30px;
            color: var(--background-color);
            transition: 0.4s;
            border-radius: 50px;
            font-weight: 600;
        }

        .contact button:hover {
            background: var(--primary-color);
            color: white;
        }

        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .footer .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 10px;
        }

        .footer .footer-links a:hover {
            text-decoration: underline;
        }
        
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--card-bg);
            color: var(--text-color);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .cookie-popup a {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        .cookie-popup button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
        }

        @media (max-width: 991px) {
            .hero-img {
                order: -1;
            }
        }
        
        /* New Layout for FAQ Section */
        .faq-container {
            border-radius: 10px;
            overflow: hidden;
            background-color: var(--card-bg);
            border: 1px solid var(--primary-color);
        }

        .faq-item {
            padding: 20px;
            border-bottom: 1px solid var(--primary-color);
            cursor: pointer;
            position: relative;
        }

        .faq-item h3 {
            color: var(--text-color);
            font-size: 1.2rem;
            margin: 0;
            padding-right: 30px;
        }

        .faq-icon {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .faq-content {
            display: none;
            padding-top: 15px;
            color: #ccc;
        }
        
        .faq-toggle {
            position: absolute;
            right: 20px;
            top: 25px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.faq-active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-item.faq-active .faq-content {
            display: block;
        }
  