
        :root {
            --green-primary: rgb(92,147,70);
            --light-brown   : rgb(242,215,174);
            --green-dark: #3d6a1c;
            --green-light: #5c9429;
            --cream-bg: #f5f0e6;
            --cream-light: #fffaf4;
            --orange-accent: #e8a33c;
            --brown-text: #4a4235;
            --brown-light: #6b5d4d;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
            --brown-mitte: rgb(238,226,209);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--brown-mitte);
            color: var(--brown-text);
            line-height: 1.6;
        }

        .decorative-font {
            font-family: 'DynaPuff', serif;
            font-weight: 400;
        }
        h2.decorative-font
        {
            font-family: 'DynaPuff', serif;
            font-size: 2rem!important;
        }

        /* Header */
        .top-header {
            background: var(--brown-mitte);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 0px 10% auto;
        } 

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

        .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--light-brown);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon img
        {
            width: 70px;
            height: auto;
        }

        .logo-text h1 {
            font-family: 'DynaPuff', serif;
            font-size: 2rem;
            color: var(--light-brown);
            font-weight: 700;
            text-shadow: 1px 1px 0 var(--green-primary),
                -1px 1px 0 var(--green-primary),
                1px -1px 0 var(--green-primary),
                -1px -1px 0 var(--green-primary),
                0px 1px 0 var(--green-primary),
                0px -1px 0 var(--green-primary),
                -1px 0px 0 var(--green-primary),
                1px 0px 0 var(--green-primary),
                2px 2px 0 var(--green-primary),
                -2px 2px 0 var(--green-primary),
                2px -2px 0 var(--green-primary),
                -2px -2px 0 var(--green-primary),
                0px 2px 0 var(--green-primary),
                0px -2px 0 var(--green-primary),
                -2px 0px 0 var(--green-primary),
                3px 0px 0 var(--green-primary),
                1px 2px 0 var(--green-primary),
                -1px 2px 0 var(--green-primary),
                1px -2px 0 var(--green-primary),
                -1px -2px 0 var(--green-primary),
                3px 1px 0 var(--green-primary),
                -2px 1px 0 var(--green-primary),
                3px -1px 0 var(--green-primary),
                -2px -1px 0 var(--green-primary); 
            letter-spacing: 1px;
        }

        .logo-text p {
            font-size: 1rem;
            color: var(--green-dark);
        }

        .contact-info {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border: 2px solid var(--green-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green-primary);
        }

        .contact-label {
            font-size: 0.75rem;
            color: var(--brown-light);
        }

        .contact-value {
            font-weight: 600;
            color: var(--brown-text);
        }

        /* Navigation */
        .main-nav {
            background: var(--green-primary);
            padding: 0 5%;
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: nowrap;
            margin: 0 10% auto;
        }
        .nav-list li
        {
            flex: 1 1 auto; 
            text-align: center;
        }

        .nav-list li a {
            display: block;
            padding: 15px 25px;
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s ease;
        }

        .nav-list li a:hover,
        .nav-list li a.active {
            background: var(--light-brown);
            color: var(--green-primary);
        }

        /* Hero/Promo Carousel Section */
        .promo-section {
            position: relative;
            min-height: 550px;
            overflow: hidden;
        }

        .promo-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 550px;
        }

        .promo-track {
            display: flex;
            height: 100%;
            min-height: 550px;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .promo-slide {
            min-width: 80%;
            margin:0 10% auto ;
            position: relative;
            display: flex;
            align-items: center;
            padding: 60px 5%;
            overflow: hidden;
            height: 550px;
        }

        /* Slide Backgrounds */
        .promo-slide-1 {
            background: transparent url("/img/promo/background.png") no-repeat center top;
            background-size: cover;
        }

        .promo-slide-2 {
            background: transparent;
        }

        .promo-slide-3 {
            background: transparent;
        }

        .promo-slide-4 {
            background:transparent;
        }

        /* Animated Background Elements */
        .promo-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--green-primary);
            border-radius: 50%;
            top: -100px;
            right: -50px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--orange-accent);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            bottom: -50px;
            left: 10%;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--green-light);
            border-radius: 50%;
            top: 30%;
            right: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, -30px) rotate(5deg);
            }
            50% {
                transform: translate(-10px, 20px) rotate(-5deg);
            }
            75% {
                transform: translate(30px, 10px) rotate(3deg);
            }
        }

        /* Promo Content */
        .promo-content {
            max-width: 550px;
            z-index: 2;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInContent 0.8s ease forwards;
        }

        .promo-slide.active .promo-content {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes slideInContent {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .promo-badge {
            display: inline-block;
            background: var(--orange-accent);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(232, 163, 60, 0.4);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 0 20px 5px rgba(232, 163, 60, 0.2);
            }
        }

        .promo-content h2 {
            font-family: 'DynaPuff', serif;
            font-size: 2rem;
            color: var(--green-primary);
            margin-bottom: 20px;
            line-height: 1.3;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards 0.2s;
        }

        .promo-content .promo-subtitle {
            color: var(--green-dark);
            margin-bottom: 25px;
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards 0.4s;
        }

        .promo-features {
            list-style: none;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards 0.5s;
        }

        .promo-features li {
            padding: 10px 0;
            color: var(--brown-text);
            position: relative;
            padding-left: 35px;
            font-size: 1rem;
        }

        .promo-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            width: 24px;
            height: 24px;
            background: var(--green-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .promo-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards 0.6s;
        }

        .btn-primary {
            display: inline-block;
            background: var(--green-primary);
            color: var(--white);
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--green-primary);
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid var(--green-primary);
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--green-primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Promo Visual/Image Area */
        .promo-visual {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 500px;
            z-index: 1;
        }

        .promo-image-container {
            position: relative;
            width: 100%;
            height: 400px;
        }

        /* Animated Boxes for Slide 1 */
        .animated-boxes {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .box {
            position: absolute;
            background: linear-gradient(145deg, #d4a574, #c49464);
            border-radius: 12px;
            box-shadow: var(--shadow);
            opacity: 0;
            animation: boxAppear 0.6s ease forwards;
        }

        .box-1 {
            width: 120px;
            height: 100px;
            top: 15%;
            left: 5%;
            animation-delay: 0.3s;
            transform: rotate(-5deg);
        }

        .box-2 {
            width: 150px;
            height: 130px;
            top: 10%;
            left: 35%;
            animation-delay: 0.5s;
            transform: rotate(3deg);
        }

        .box-3 {
            width: 100px;
            height: 90px;
            top: 5%;
            right: 15%;
            animation-delay: 0.7s;
            transform: rotate(-8deg);
        }

        .box-4 {
            width: 130px;
            height: 110px;
            bottom: 35%;
            left: 15%;
            animation-delay: 0.9s;
            transform: rotate(5deg);
        }

        .box-5 {
            width: 90px;
            height: 80px;
            bottom: 40%;
            right: 25%;
            animation-delay: 1.1s;
            transform: rotate(-3deg);
        }

        @keyframes boxAppear {
            from {
                opacity: 0;
                transform: translateY(30px) rotate(0deg) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotate(var(--rotation, 0deg)) scale(1);
            }
        }

        .box-1 { --rotation: -5deg; }
        .box-2 { --rotation: 3deg; }
        .box-3 { --rotation: -8deg; }
        .box-4 { --rotation: 5deg; }
        .box-5 { --rotation: -3deg; }

        /* Animated floating boxes */
        .box {
            animation: boxAppear 0.6s ease forwards, boxFloat 4s ease-in-out infinite 1.5s;
        }

        @keyframes boxFloat {
            0%, 100% {
                transform: translateY(0) rotate(var(--rotation, 0deg));
            }
            50% {
                transform: translateY(-15px) rotate(var(--rotation, 0deg));
            }
        }

        .door-frame {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 280px;
            background: linear-gradient(180deg, #8b7355 0%, #6b5743 100%);
            border-radius: 12px 12px 0 0;
            box-shadow: var(--shadow-hover);
            opacity: 0;
            animation: doorAppear 0.8s ease forwards 0.2s;
        }

        .door-frame::before {
            content: "";
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: #d4a574;
            border-radius: 50%;
            box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2);
        }

        .door-frame::after {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 3px solid rgba(255,255,255,0.1);
            border-radius: 8px 8px 0 0;
        }

        @keyframes doorAppear {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Stats Counter for Slide 2 */
        .promo-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards 0.7s;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'DynaPuff', serif;
            font-size: 2.5rem;
            color: var(--green-primary);
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--brown-light);
            margin-top: 5px;
        }

        /* Service Icons for Slide 3 */
        .service-icons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
            width: 100%;
            height: 100%;
        }

        .service-icon-item {
            background: var(--white);
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            opacity: 0;
            animation: iconAppear 0.5s ease forwards;
            transition: transform 0.3s ease;
        }

        .service-icon-item:hover {
            transform: translateY(-10px);
        }

        .service-icon-item:nth-child(1) { animation-delay: 0.2s; }
        .service-icon-item:nth-child(2) { animation-delay: 0.3s; }
        .service-icon-item:nth-child(3) { animation-delay: 0.4s; }
        .service-icon-item:nth-child(4) { animation-delay: 0.5s; }
        .service-icon-item:nth-child(5) { animation-delay: 0.6s; }
        .service-icon-item:nth-child(6) { animation-delay: 0.7s; }

        @keyframes iconAppear {
            from {
                opacity: 0;
                transform: scale(0.5) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .service-icon-emoji {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .service-icon-text {
            font-size: 0.8rem;
            color: var(--brown-text);
            font-weight: 500;
        }

        /* Testimonial Visual for Slide 4 */
        .promo-testimonial {
            background: var(--white);
            border-radius: 25px;
            padding: 40px;
            box-shadow: var(--shadow-hover);
            position: relative;
            opacity: 0;
            animation: testimonialAppear 0.8s ease forwards 0.3s;
        }

        @keyframes testimonialAppear {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .promo-testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: var(--green-primary);
            opacity: 0.2;
            font-family: 'DynaPuff', serif;
            line-height: 1;
        }

        .promo-testimonial-text {
            font-size: 1.1rem;
            color: var(--brown-text);
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .promo-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .promo-testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--green-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .promo-testimonial-name {
            font-weight: 600;
            color: var(--brown-text);
        }

        .promo-testimonial-stars {
            color: var(--orange-accent);
            font-size: 0.9rem;
        }

        /* Promo Carousel Navigation */
        .promo-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            box-shadow: var(--shadow-hover);
            cursor: pointer;
            font-size: 1.3rem;
            color: var(--green-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .promo-nav:hover {
            background: var(--green-primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .promo-prev {
            left: 20px;
        }

        .promo-next {
            right: 20px;
        }

        /* Promo Dots */
        .promo-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .promo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(74, 124, 35, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-dot.active {
            background: var(--green-primary);
            transform: scale(1.3);
        }

        .promo-dot:hover {
            background: var(--green-primary);
        }

        /* Progress Bar */
        .promo-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(74, 124, 35, 0.2);
            z-index: 20;
        }

        .promo-progress-bar {
            height: 100%;
            background: var(--green-primary);
            width: 0%;
            transition: width 0.1s linear;
        }
        /* Steps Section */
        .steps-section {
            padding: 80px 5%;
            background: var(--cream-light);
            text-align: center;
        }

        .section-title {
            font-family: 'DynaPuff', serif;
            font-size: 1.8rem;
            color: var(--green-primary);
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: var(--cream-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--green-primary);
        }
        .step-icon img
        {
            width: 100%;
            height: auto;
        }

        .step-title {
            font-family: 'DynaPuff', serif;
            font-size: 1.2rem;
            color: var(--green-primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step-description {
            color: var(--brown-light);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 600;
        }

        /* Process Timeline Section */
        .process-section {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--cream-bg) 0%, var(--cream-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(74, 124, 35, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(232, 163, 60, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .process-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .process-header .section-badge {
            display: inline-block;
            background: var(--green-primary);
            color: var(--white);
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .process-header h2 {
            font-family: 'DynaPuff', serif;
            font-size: 2.5rem;
            color: var(--green-primary);
            margin-bottom: 15px;
        }

        .process-header p {
            color: var(--brown-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Timeline Container */
        .process-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Central Timeline Line */
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, 
                var(--green-primary) 0%, 
                var(--green-light) 50%, 
                var(--orange-accent) 100%);
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 0;
        }

        .timeline-line::before,
        .timeline-line::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--green-primary);
            border-radius: 50%;
            border: 4px solid var(--cream-bg);
            box-shadow: 0 0 20px rgba(74, 124, 35, 0.3);
        }

        .timeline-line::before {
            top: -10px;
        }

        .timeline-line::after {
            bottom: -10px;
            background: var(--orange-accent);
        }

        /* Timeline Items */
        .timeline-item {
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        /* Alternating Layout */
        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Timeline Content Card */
        .timeline-content {
            width: calc(50% - 60px);
            background: var(--white);
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        /* Arrow Pointer */
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: "";
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            border: 15px solid transparent;
            border-left-color: var(--white);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: "";
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            border: 15px solid transparent;
            border-right-color: var(--white);
        }

        /* Timeline Node (Center Circle) */
        .timeline-node {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            box-shadow: 0 10px 30px rgba(74, 124, 35, 0.3);
            transition: all 0.4s ease;
        }

        .timeline-item:hover .timeline-node {
            transform: translateX(-50%) scale(1.15);
            box-shadow: 0 15px 40px rgba(74, 124, 35, 0.4);
        }

        .timeline-node-inner {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        /* Step Number Badge */
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: var(--orange-accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(232, 163, 60, 0.4);
        }

        /* Content Styling */
        .timeline-content h3 {
            font-family: 'DynaPuff', serif;
            font-size: 1.5rem;
            color: var(--green-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .timeline-content h3 .mobile-step {
            display: none;
            width: 30px;
            height: 30px;
            background: var(--orange-accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 0.8rem;
            font-family: 'Poppins', sans-serif;
            align-items: center;
            justify-content: center;
        }

        .timeline-content p {
            color: var(--brown-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .timeline-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .timeline-feature {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--cream-bg);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--brown-text);
            font-weight: 500;
        }

        .timeline-feature svg {
            color: var(--green-primary);
        }

        /* Animated Decorations */
        .process-decoration {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
        }

        .process-decoration-1 {
            top: 10%;
            left: 5%;
            width: 150px;
            height: 150px;
            border: 3px solid var(--green-primary);
            border-radius: 50%;
            animation: decorSpin 20s linear infinite;
        }

        .process-decoration-2 {
            bottom: 15%;
            right: 5%;
            width: 100px;
            height: 100px;
            background: var(--orange-accent);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: decorFloat 8s ease-in-out infinite;
        }

        .process-decoration-3 {
            top: 40%;
            right: 10%;
            width: 80px;
            height: 80px;
            border: 3px dashed var(--green-light);
            border-radius: 50%;
            animation: decorSpin 15s linear infinite reverse;
        }

        @keyframes decorSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes decorFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* CTA at the end */
        .process-cta {
            text-align: center;
            margin-top: 80px;
            position: relative;
            z-index: 2;
        }

        .process-cta p {
            font-size: 1.2rem;
            color: var(--brown-text);
            margin-bottom: 25px;
        }

        .process-cta p strong {
            color: var(--green-primary);
        }

        /* Responsive Timeline */
        @media (max-width: 1024px) {
            .timeline-content {
                width: calc(50% - 50px);
                padding: 30px;
            }

            .timeline-node {
                width: 70px;
                height: 70px;
            }

            .timeline-node-inner {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 60px 4%;
            }

            .process-header {
                margin-bottom: 50px;
            }

            .process-header h2 {
                font-size: 1.8rem;
            }

            .process-header p {
                font-size: 1rem;
            }

            /* Stack timeline vertically */
            .timeline-line {
                left: 30px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 80px;
                margin-bottom: 40px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                display: none;
            }

            .timeline-node {
                position: absolute;
                left: 30px;
                top: 30px;
                width: 60px;
                height: 60px;
            }

            .timeline-node-inner {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .step-number {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
                top: -5px;
                right: -5px;
            }

            .timeline-content h3 {
                font-size: 1.3rem;
            }

            .timeline-content h3 .mobile-step {
                display: none;
            }

            .process-decoration {
                display: none;
            }

            .process-cta {
                margin-top: 50px;
            }
        }

        @media (max-width: 480px) {
            .process-section {
                padding: 50px 3%;
            }

            .process-header h2 {
                font-size: 1.5rem;
            }

            .timeline-line {
                left: 25px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 65px;
            }

            .timeline-node {
                left: 25px;
                width: 50px;
                height: 50px;
            }

            .timeline-node-inner {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }

            .timeline-content {
                padding: 20px;
                border-radius: 18px;
            }

            .timeline-content h3 {
                font-size: 1.15rem;
            }

            .timeline-content p {
                font-size: 0.85rem;
            }

            .timeline-features {
                gap: 8px;
            }

            .timeline-feature {
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .process-cta p {
                font-size: 1rem;
            }
        }

        /* Before-After Section */
        .before-after-section {
            padding: 80px 5%;
            background: var(--white);
            text-align: center;
        }

        .before-after-carousel {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .carousel-viewport {
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 20px;
        }

        .carousel-slide {
            min-width: calc(25% - 15px);
            flex-shrink: 0;
        }

        @media (max-width: 1200px) {
            .carousel-slide {
                min-width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 900px) {
            .carousel-slide {
                min-width: calc(50% - 10px);
            }
        }

        @media (max-width: 600px) {
            .carousel-slide {
                min-width: 100%;
            }
        }

        .before-after-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .before-after-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .card-images {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .before-state,
        .after-state {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, transform 0.5s ease;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 100% auto;
        }

        .before-state {
            opacity: 1;
           
        }

        .after-state {
            opacity: 0;
            
        }

        .before-after-card:hover .before-state {
            opacity: 0;
            
        }

        .before-after-card:hover .after-state {
            opacity: 1;
            
        }

        .state-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            z-index: 2;
        }

        .room-icon {
            font-size: 3.5rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        .room-label {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .clutter-items {
            display: flex;
            gap: 8px;
            font-size: 1.5rem;
        }

        .clean-badge {
            background: rgba(255,255,255,0.25);
            padding: 8px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .state-label {
            position: absolute;
            top: 15px;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
        }

        .label-vorher {
            left: 15px;
            background: #c0392b;
            color: var(--white);
        }

        .label-nachher {
            left: 15px;
            background: var(--green-primary);
            color: var(--white);
        }

        .card-info {
            padding: 20px;
            background: var(--cream-bg);
            text-align: center;
        }

        .card-title {
            font-family: 'DynaPuff', serif;
            font-size: 1.1rem;
            color: var(--green-primary);
            margin-bottom: 5px;
        }

        .card-description {
            color: var(--brown-light);
            font-size: 0.85rem;
        }

        .hover-hint {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 1;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .before-after-card:hover .hover-hint {
            opacity: 0;
        }

        /* Carousel Navigation */
        .carousel-nav-ba {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            cursor: pointer;
            font-size: 1.3rem;
            color: var(--green-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .carousel-nav-ba:hover {
            background: var(--green-primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav-ba:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .carousel-nav-ba:disabled:hover {
            background: var(--white);
            color: var(--green-primary);
            transform: translateY(-50%) scale(1);
        }

        .carousel-prev-ba {
            left: 0;
        }

        .carousel-next-ba {
            right: 0;
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 35px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cream-bg);
            border: 2px solid var(--green-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active,
        .carousel-dot:hover {
            background: var(--green-primary);
            transform: scale(1.2);
        }

        /* All-in-One Section */
        .allinone-section {
            background: linear-gradient(135deg, var(--cream-bg) 0%, #ebe5d9 100%);
            padding: 180px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            background: transparent url("/img/tools/handwerker.png") no-repeat center top;
            background-size: cover; 
        }
        .allinone-holder {
            margin: 0px 10% auto;
            width: 80%;
            vertical-align: top;
            
        }
        .allinone-content {
            max-width: 650px;
            width: 65%;
            z-index: 2;
            display: inline-block;
            vertical-align: top;
        }

        .allinone-title {
            font-family: 'DynaPuff', serif;
            font-size: 2rem;
            color: var(--green-primary);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .allinone-subtitle {
            font-weight: 600;
            color: var(--green-primary);
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .allinone-text {
            color: var(--brown-light);
            font-size: 1rem;
            line-height: 1.7;
        }

        .worker-image {
            position: absolute;
            width: 35%;
            height: 600px;
            z-index: 2;
            display: inline-block;
            margin-left: 10%;
            right: 10%;
            top:-20%;
            z-index: 100;
        }

        .worker-body {
            width: 200px;
            height: 300px;
            background: var(--green-primary);
            border-radius: 100px 100px 0 0;
            position: relative;
        }

        .worker-head {
            width: 80px;
            height: 80px;
            background: #e8c4a0;
            border-radius: 50%;
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
        }

        .worker-helmet {
            width: 90px;
            height: 45px;
            background: var(--orange-accent);
            border-radius: 45px 45px 0 0;
            position: absolute;
            top: -55px;
            left: 50%;
            transform: translateX(-50%);
        }

        .worker-arms {
            position: absolute;
            width: 100%;
            height: 60px;
            top: 80px;
        }

        .worker-arms::before,
        .worker-arms::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 20px;
            background: #e8c4a0;
            border-radius: 10px;
        }

        .worker-arms::before {
            left: -30px;
            transform: rotate(-30deg);
        }

        .worker-arms::after {
            right: -30px;
            transform: rotate(30deg);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 5%;
            background: var(--cream-light);
            text-align: center;
        }

        .testimonials-title {
            font-size: 1.4rem;
            color: var(--green-dark);
            margin-bottom: 40px;
            font-weight: 400;
            font-family: 'DynaPuff', serif;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: left;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .avatar-m { background: #e8d4c4; color: var(--brown-text); }
        .avatar-n { background: #c4d4e8; color: #3d5a80; }
        .avatar-c { background: #d4e8c4; color: var(--green-dark); }
        .avatar-t { background: #e8e4c4; color: #7a6f40; }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--brown-text);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .google-icon {
            width: 16px;
            height: 16px;
            background: #4285f4;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            font-weight: 700;
        }

        .testimonial-date {
            font-size: 0.8rem;
            color: var(--brown-light);
        }

        .testimonial-stars {
            color: var(--orange-accent);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .testimonial-text {
            font-size: 0.9rem;
            color: var(--brown-light);
            line-height: 1.6;
        }

        .testimonial-more {
            color: var(--green-primary);
            font-size: 0.85rem;
            text-decoration: none;
            display: block;
            margin-top: 10px;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            box-shadow: var(--shadow);
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--brown-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: var(--green-primary);
            color: var(--white);
        }

        .carousel-prev { left: -20px; }
        .carousel-next { right: -20px; }

        /* Footer */
        .footer {
            background: var(--green-primary);
            padding: 60px 5% 30px;
            color: var(--white);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-title {
            font-family: 'DynaPuff', serif;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--cream-bg);
            color: var(--brown-text);
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-btn:hover {
            background: var(--white);
            transform: translateX(5px);
        }

        .footer-btn span {
            color: var(--green-primary);
            font-weight: 700;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }


        /* Contact Form Section */
        .contact-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .contact-info-section {
            color: var(--white);
        }

        .contact-info-section h2 {
            font-family: 'DynaPuff', serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .contact-info-section > p {
            opacity: 0.9;
            margin-bottom: 40px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-detail-icon {
            width: 55px;
            height: 55px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
        }

        .contact-detail-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--white);
        }

        .contact-detail-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-detail-content p {
            opacity: 0.85;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .contact-detail-content a {
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .contact-detail-content a:hover {
            opacity: 0.8;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .contact-form-wrapper h3 {
            font-family: 'DynaPuff', serif;
            font-size: 1.5rem;
            color: var(--green-primary);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--brown-text);
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: #c0392b;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e4dc;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--brown-text);
            background: var(--cream-light);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green-primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(74, 124, 35, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a09080;
        }

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

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5d4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
            padding-right: 45px;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--green-primary);
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 0.85rem;
            color: var(--brown-light);
            line-height: 1.5;
            cursor: pointer;
        }

        .form-checkbox label a {
            color: var(--green-primary);
            text-decoration: none;
        }

        .form-checkbox label a:hover {
            text-decoration: underline;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px 30px;
            background: var(--green-primary);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit-btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 124, 35, 0.3);
        }

        .form-submit-btn:disabled {
            background: #a0a0a0;
            cursor: not-allowed;
            transform: none;
        }

        .form-submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        .form-submit-btn.loading .spinner {
            display: block;
        }

        .form-submit-btn.loading .btn-text {
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Form Messages */
        .form-message {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: flex;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: flex;
        }

        .form-message svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .contact-form-wrapper h3 {
            font-family: 'DynaPuff', serif;
            font-size: 1.5rem;
            color: var(--green-primary);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--brown-text);
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: #c0392b;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e4dc;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--brown-text);
            background: var(--cream-light);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green-primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(74, 124, 35, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a09080;
        }

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

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5d4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
            padding-right: 45px;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--green-primary);
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 0.85rem;
            color: var(--brown-light);
            line-height: 1.5;
            cursor: pointer;
        }

        .form-checkbox label a {
            color: var(--green-primary);
            text-decoration: none;
        }

        .form-checkbox label a:hover {
            text-decoration: underline;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px 30px;
            background: var(--green-primary);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit-btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 124, 35, 0.3);
        }

        .form-submit-btn:disabled {
            background: #a0a0a0;
            cursor: not-allowed;
            transform: none;
        }

        .form-submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        .form-submit-btn.loading .spinner {
            display: block;
        }

        .form-submit-btn.loading .btn-text {
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Form Messages */
        .form-message {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: flex;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: flex;
        }

        .form-message svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        /* Responsive Design */
        
        /* Large Tablets and Small Desktops */
        @media (max-width: 1024px) {
            .promo-visual {
                display: none;
            }

            .promo-content {
                max-width: 100%;
            }

            .promo-slide {
                padding: 50px 5%;
            }

            .promo-section {
                min-height: 480px;
            }

            .promo-carousel,
            .promo-track,
            .promo-slide {
                min-height: 480px;
            }

            .worker-image {
                display: none;
            }

            .allinone-content {
                max-width: 100%;
            }

            .steps-grid {
                gap: 20px;
            }

            .step-card {
                padding: 30px 20px;
            }
        }

        /* Tablets */
        @media (max-width: 768px) {
            /* Promo Section */
            .promo-section {
                min-height: 550px;
            }

            .promo-carousel,
            .promo-track,
            .promo-slide {
                min-height: 550px;
            }

            .promo-slide {
                padding: 40px 4%;
            }

            .promo-content h2 {
                font-size: 1.8rem;
            }

            .promo-content .promo-subtitle {
                font-size: 0.95rem;
            }

            .promo-badge {
                font-size: 0.7rem;
                padding: 6px 15px;
            }

            .promo-features li {
                font-size: 0.9rem;
                padding-left: 30px;
            }

            .promo-features li::before {
                width: 20px;
                height: 20px;
                font-size: 0.65rem;
            }

            .promo-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .promo-cta .btn-primary,
            .promo-cta .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .promo-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .promo-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .promo-prev {
                left: 10px;
            }

            .promo-next {
                right: 10px;
            }

            .promo-dots {
                bottom: 20px;
                gap: 10px;
            }

            .promo-dot {
                width: 10px;
                height: 10px;
            }

            .top-header {
                flex-direction: column;
                text-align: center;
                padding: 15px 4%;
            }

            .logo {
                flex-direction: column;
                gap: 8px;
            }

            .logo-icon {
                width: 50px;
                height: 50px;
            }

            .logo-icon::before {
                font-size: 24px;
            }

            .logo-text {
                text-align: center;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            .contact-info {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .contact-item {
                gap: 8px;
            }

            .contact-icon {
                width: 35px;
                height: 35px;
            }

            .contact-icon svg {
                width: 16px;
                height: 16px;
            }

            .contact-value {
                font-size: 0.9rem;
            }

            /* Navigation */
            .main-nav {
                padding: 0;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav-list {
                justify-content: flex-start;
                flex-wrap: nowrap;
                padding: 0 10px;
            }

            .nav-list li a {
                padding: 12px 15px;
                font-size: 0.75rem;
                white-space: nowrap;
            }

            /* Hero */
            .hero {
                min-height: auto;
                padding: 40px 4%;
            }

            .hero h2 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .service-list li {
                padding: 6px 0;
                font-size: 0.9rem;
            }

            .btn-primary {
                padding: 12px 28px;
                font-size: 0.85rem;
            }

            /* Steps Section */
            .steps-section {
                padding: 50px 4%;
            }

            .section-title {
                font-size: 1.3rem;
                margin-bottom: 35px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .step-card {
                padding: 25px 20px;
            }

            .step-icon {
                width: 90px;
                height: 90px;
                margin-bottom: 20px;
            }

            .step-title {
                font-size: 1.1rem;
            }

            .step-description {
                font-size: 0.9rem;
            }

            /* Before-After Section */
            .before-after-section {
                padding: 50px 4%;
            }

            .before-after-section > p {
                font-size: 0.85rem;
                margin-bottom: 30px;
            }

            .before-after-carousel {
                padding: 0 35px;
            }

            .carousel-nav-ba {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .carousel-prev-ba {
                left: -5px;
            }

            .carousel-next-ba {
                right: -5px;
            }

            .card-images {
                height: 240px;
            }

            .room-icon {
                font-size: 2.8rem;
            }

            .room-label {
                font-size: 0.85rem;
            }

            .clutter-items {
                font-size: 1.3rem;
                gap: 6px;
            }

            .card-info {
                padding: 15px;
            }

            .card-title {
                font-size: 1rem;
            }

            .card-description {
                font-size: 0.8rem;
            }

            .carousel-dots {
                margin-top: 25px;
                gap: 8px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            /* All-in-One Section */
            .allinone-section {
                padding: 50px 4%;
                min-height: auto;
            }

            .allinone-title {
                font-size: 1.5rem;
            }

            .allinone-subtitle {
                font-size: 0.95rem;
            }

            .allinone-text {
                font-size: 0.9rem;
            }

            /* Testimonials */
            .testimonials-section {
                padding: 50px 4%;
            }

            .testimonials-title {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .carousel-nav {
                display: none;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-avatar {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .testimonial-name {
                font-size: 0.9rem;
            }

            .testimonial-text {
                font-size: 0.85rem;
            }

            /* Footer */
            .footer {
                padding: 40px 4% 25px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-title {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .footer-links li {
                margin-bottom: 8px;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .footer-buttons {
                align-items: center;
            }

            .footer-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
                gap: 10px;
            }

            .footer-bottom {
                padding-top: 20px;
                font-size: 0.8rem;
            }
        }

        /* Mobile Phones */
        @media (max-width: 480px) {
            /* Promo Section */
            .promo-section {
                min-height: 520px;
            }

            .promo-carousel,
            .promo-track,
            .promo-slide {
                min-height: 520px;
            }

            .promo-slide {
                padding: 30px 3%;
                align-items: flex-start;
                padding-top: 40px;
            }

            .promo-content h2 {
                font-size: 1.4rem;
                line-height: 1.35;
            }

            .promo-content .promo-subtitle {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .promo-badge {
                font-size: 0.65rem;
                padding: 5px 12px;
                margin-bottom: 15px;
            }

            .promo-features {
                margin-bottom: 20px;
            }

            .promo-features li {
                font-size: 0.85rem;
                padding: 8px 0 8px 28px;
            }

            .promo-features li::before {
                width: 18px;
                height: 18px;
                font-size: 0.6rem;
                top: 8px;
            }

            .promo-cta .btn-primary,
            .promo-cta .btn-secondary {
                padding: 12px 25px;
                font-size: 0.8rem;
            }

            .promo-stats {
                flex-wrap: wrap;
                gap: 15px;
            }

            .stat-item {
                flex: 1 1 80px;
            }

            .stat-number {
                font-size: 1.6rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }

            .promo-nav {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .promo-prev {
                left: 5px;
            }

            .promo-next {
                right: 5px;
            }

            .promo-dots {
                bottom: 15px;
            }

            .promo-dot {
                width: 8px;
                height: 8px;
            }

            .floating-shape {
                display: none;
            }

            .top-header {
                padding: 12px 3%;
                gap: 15px;
            }

            .logo-icon {
                width: 45px;
                height: 45px;
            }

            .logo-text h1 {
                font-size: 1.2rem;
            }

            .logo-text p {
                font-size: 0.75rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 12px;
            }

            .contact-item {
                flex-direction: row;
                justify-content: center;
            }

            .contact-label {
                font-size: 0.7rem;
            }

            .contact-value {
                font-size: 0.85rem;
            }

            /* Navigation - Horizontal scroll */
            .main-nav {
                margin: 0 -3%;
                padding: 0;
            }

            .nav-list {
                padding: 0 3%;
            }

            .nav-list li a {
                padding: 10px 12px;
                font-size: 0.7rem;
            }

            /* Hero */
            .hero {
                padding: 30px 3%;
            }

            .hero h2 {
                font-size: 1.3rem;
                line-height: 1.4;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .service-list li {
                font-size: 0.85rem;
                padding: 5px 0;
            }

            .btn-primary {
                padding: 12px 25px;
                font-size: 0.8rem;
                width: 100%;
                text-align: center;
            }

            /* Steps */
            .steps-section {
                padding: 40px 3%;
            }

            .section-title {
                font-size: 1.15rem;
                margin-bottom: 30px;
                letter-spacing: 1px;
            }

            .step-card {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .step-icon {
                width: 75px;
                height: 75px;
            }

            .step-icon svg {
                width: 26px;
                height: 26px;
            }

            .step-title {
                font-size: 1rem;
            }

            .step-description {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            /* Before-After */
            .before-after-section {
                padding: 40px 3%;
            }

            .before-after-section > p {
                font-size: 0.8rem;
                padding: 0 10px;
            }

            .before-after-carousel {
                padding: 0 30px;
            }

            .carousel-nav-ba {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .card-images {
                height: 220px;
            }

            .room-icon {
                font-size: 2.5rem;
            }

            .room-label {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }

            .clutter-items {
                font-size: 1.2rem;
            }

            .clean-badge {
                font-size: 0.75rem;
                padding: 6px 15px;
            }

            .state-label {
                font-size: 0.65rem;
                padding: 5px 12px;
                top: 10px;
                left: 10px;
            }

            .hover-hint {
                font-size: 0.6rem;
                padding: 5px 12px;
                bottom: 10px;
            }

            .card-info {
                padding: 12px;
            }

            .card-title {
                font-size: 0.95rem;
            }

            .card-description {
                font-size: 0.75rem;
            }

            .carousel-dots {
                margin-top: 20px;
            }

            .carousel-dot {
                width: 8px;
                height: 8px;
            }

            /* All-in-One */
            .allinone-section {
                padding: 40px 3%;
            }

            .allinone-title {
                font-size: 1.3rem;
            }

            .allinone-subtitle {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .allinone-text {
                font-size: 0.85rem;
            }

            /* Testimonials */
            .testimonials-section {
                padding: 40px 3%;
            }

            .testimonials-title {
                font-size: 1rem;
            }

            .testimonial-card {
                padding: 18px;
                border-radius: 12px;
            }

            .testimonial-header {
                gap: 10px;
                margin-bottom: 12px;
            }

            .testimonial-avatar {
                width: 38px;
                height: 38px;
            }

            .testimonial-name {
                font-size: 0.85rem;
            }

            .testimonial-date {
                font-size: 0.7rem;
            }

            .testimonial-stars {
                font-size: 0.85rem;
            }

            .testimonial-text {
                font-size: 0.8rem;
                line-height: 1.5;
            }

            .testimonial-more {
                font-size: 0.8rem;
            }

            /* Footer */
            .footer {
                padding: 35px 3% 20px;
            }

            .footer-grid {
                gap: 25px;
            }

            .footer-title {
                font-size: 0.95rem;
            }

            .footer-links a {
                font-size: 0.85rem;
            }

            .footer-btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
            }
        }

        /* Extra Small Phones */
        @media (max-width: 360px) {
            .promo-content h2 {
                font-size: 1.2rem;
            }

            .promo-content .promo-subtitle {
                font-size: 0.8rem;
            }

            .promo-features li {
                font-size: 0.8rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .hero h2 {
                font-size: 1.15rem;
            }

            .section-title {
                font-size: 1.05rem;
            }

            .nav-list li a {
                padding: 8px 10px;
                font-size: 0.65rem;
            }

            .card-images {
                height: 200px;
            }

            .room-icon {
                font-size: 2.2rem;
            }

            .clutter-items {
                font-size: 1rem;
            }
        }

        /* Landscape Mode for Mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 30px 5%;
            }

            .card-images {
                height: 200px;
            }

            .steps-section,
            .before-after-section,
            .allinone-section,
            .testimonials-section {
                padding: 40px 5%;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .before-after-card {
                /* On touch devices, show tap hint instead of hover hint */
                font: optional;
            }

            .hover-hint {
                content: "Tippen für Nachher";
            }

            .before-after-card:active .before-state {
                opacity: 0;
                transform: scale(0.9);
            }

            .before-after-card:active .after-state {
                opacity: 1;
                transform: scale(1);
            }

            .btn-primary:hover {
                transform: none;
            }

            .step-card:hover {
                transform: none;
            }

            .testimonial-card:hover {
                transform: none;
            }

            .before-after-card:hover {
                transform: none;
            }

            /* Add active states for touch */
            .btn-primary:active {
                transform: scale(0.98);
                background: var(--green-dark);
            }

            .step-card:active {
                transform: scale(0.98);
            }

            .carousel-nav-ba:active {
                transform: translateY(-50%) scale(0.95);
                background: var(--green-primary);
                color: var(--white);
            }
        }

        /* High DPI Screens */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo-icon,
            .contact-icon,
            .step-icon {
                border-width: 0.5px;
            }
        }

        /* Prefers Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .promo-track {
                transition: none;
            }

            .floating-shape {
                animation: none;
            }

            .box {
                animation: none;
                opacity: 1;
            }

            .door-frame {
                animation: none;
                opacity: 1;
            }

            .promo-badge {
                animation: none;
            }

            .promo-content,
            .promo-content h2,
            .promo-content .promo-subtitle,
            .promo-features,
            .promo-cta,
            .promo-stats {
                animation: none;
                opacity: 1;
                transform: none;
            }

            .service-icon-item {
                animation: none;
                opacity: 1;
            }

            .promo-testimonial {
                animation: none;
                opacity: 1;
            }

            .carousel-track {
                transition: none;
            }

            .before-state,
            .after-state {
                transition: none;
            }

            .step-card,
            .testimonial-card,
            .before-after-card {
                animation: none;
                transition: none;
            }

            .btn-primary,
            .carousel-nav-ba,
            .carousel-dot {
                transition: none;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.15s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.25s; }
    
        /* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
        z-index: 10000;
        transform: translateY(100%);
        transition: transform 0.4s ease;
        font-family: 'Poppins', sans-serif;
    }

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

    .cookie-banner-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 25px 5%;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .cookie-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4a7c23 0%, #5c9429 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .cookie-text {
        flex: 1;
    }

    .cookie-text h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        color: #4a7c23;
        margin-bottom: 8px;
    }

    .cookie-text p {
        font-size: 0.9rem;
        color: #6b5d4d;
        line-height: 1.6;
        margin: 0;
    }

    .cookie-text a {
        color: #4a7c23;
        text-decoration: underline;
    }

    .cookie-text a:hover {
        color: #3d6a1c;
    }

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

    .cookie-btn {
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        font-family: 'Poppins', sans-serif;
    }

    .cookie-btn-accept {
        background: #4a7c23;
        color: #ffffff;
    }

    .cookie-btn-accept:hover {
        background: #3d6a1c;
        transform: translateY(-2px);
    }

    .cookie-btn-settings {
        background: transparent;
        color: #4a7c23;
        border: 2px solid #4a7c23;
    }

    .cookie-btn-settings:hover {
        background: #4a7c23;
        color: #ffffff;
    }

    .cookie-btn-reject {
        background: #f5f0e6;
        color: #6b5d4d;
    }

    .cookie-btn-reject:hover {
        background: #e8e4dc;
    }

    /* Cookie Settings Modal */
    .cookie-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 10001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .cookie-modal-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    .cookie-modal {
        background: #ffffff;
        border-radius: 25px;
        max-width: 600px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        transform: scale(0.9);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    .cookie-modal-overlay.visible .cookie-modal {
        transform: scale(1);
    }

    .cookie-modal-header {
        background: linear-gradient(135deg, #4a7c23 0%, #3d6a1c 100%);
        padding: 30px;
        border-radius: 25px 25px 0 0;
        color: #ffffff;
        position: relative;
    }

    .cookie-modal-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .cookie-modal-header p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }

    .cookie-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        background: rgba(255,255,255,0.2);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .cookie-modal-close:hover {
        background: rgba(255,255,255,0.3);
    }

    .cookie-modal-close svg {
        width: 18px;
        height: 18px;
        stroke: #ffffff;
    }

    .cookie-modal-body {
        padding: 30px;
    }

    .cookie-category {
        background: #faf8f3;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
    }

    .cookie-category:last-child {
        margin-bottom: 0;
    }

    .cookie-category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .cookie-category-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .cookie-category-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #4a7c23 0%, #5c9429 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .cookie-category-info h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        color: #4a7c23;
        margin: 0;
    }

    .cookie-category p {
        font-size: 0.85rem;
        color: #6b5d4d;
        line-height: 1.6;
        margin: 0;
        padding-left: 52px;
    }

    /* Toggle Switch */
    .cookie-toggle {
        position: relative;
        width: 50px;
        height: 26px;
    }

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

    .cookie-toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #d1d5db;
        transition: 0.3s;
        border-radius: 26px;
    }

    .cookie-toggle-slider::before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background: #ffffff;
        transition: 0.3s;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .cookie-toggle input:checked + .cookie-toggle-slider {
        background: #4a7c23;
    }

    .cookie-toggle input:checked + .cookie-toggle-slider::before {
        transform: translateX(24px);
    }

    .cookie-toggle input:disabled + .cookie-toggle-slider {
        background: #4a7c23;
        opacity: 0.7;
        cursor: not-allowed;
    }

    .cookie-toggle-label {
        font-size: 0.75rem;
        color: #6b5d4d;
        margin-left: 10px;
    }

    .cookie-toggle-label.required {
        color: #4a7c23;
        font-weight: 600;
    }

    /* Modal Footer */
    .cookie-modal-footer {
        padding: 20px 30px 30px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cookie-modal-footer .cookie-btn {
        flex: 1;
        min-width: 140px;
    }

    /* Small Cookie Icon (floating) */
    .cookie-settings-trigger {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4a7c23 0%, #5c9429 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(74, 124, 35, 0.3);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .cookie-settings-trigger.visible {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .cookie-settings-trigger:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(74, 124, 35, 0.4);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cookie-banner-content {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            gap: 20px;
        }

        .cookie-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .cookie-buttons {
            flex-direction: column;
            width: 100%;
        }

        .cookie-btn {
            width: 100%;
        }

        .cookie-modal {
            border-radius: 20px;
            margin: 10px;
        }

        .cookie-modal-header {
            padding: 25px 20px;
            border-radius: 20px 20px 0 0;
        }

        .cookie-modal-header h2 {
            font-size: 1.3rem;
            padding-right: 30px;
        }

        .cookie-modal-body {
            padding: 20px;
        }

        .cookie-category {
            padding: 15px;
        }

        .cookie-category-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .cookie-category p {
            padding-left: 0;
            margin-top: 10px;
        }

        .cookie-modal-footer {
            padding: 15px 20px 25px;
            flex-direction: column;
        }

        .cookie-modal-footer .cookie-btn {
            width: 100%;
        }

        .cookie-settings-trigger {
            bottom: 15px;
            left: 15px;
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
    }