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

        :root {
            --primary-accent: #769197;
            --secondary-accent: #5aadad;
            --dark-bg: #3c3c3b;
            --dark-surface: #4a4a49;
            --dark-card: #525251;
            --light-bg: #f5f5f5;
            --light-surface: #e8e8e8;
            --light-card: #ffffff;
            --text-dark: #ffffff;
            --text-light: #2a2a29;
            --accent: #769197;
            --accent-hover: #5aadad;
            --shadow: rgba(118, 145, 151, 0.08);
            --shadow-strong: rgba(90, 173, 173, 0.12);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: var(--light-bg);
            transition: background 0.3s ease, color 0.3s ease;
            overflow-x: hidden;
        }

        body.dark-mode {
            background: var(--dark-bg);
            color: var(--text-dark);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: -300px;
            left: 0;
            right: 0;
            background: var(--dark-card);
            color: var(--text-dark);
            padding: 1.5rem 2rem;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            transition: bottom 0.5s ease;
        }

        body.light-mode .cookie-banner {
            background: var(--light-card);
            color: var(--text-light);
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        }

        .cookie-banner.show {
            bottom: 0;
        }

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

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h4 {
            margin-bottom: 0.5rem;
            color: var(--primary-accent);
        }

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

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--primary-accent);
            color: white;
        }

        .cookie-accept:hover {
            background: var(--secondary-accent);
        }

        .cookie-decline {
            background: transparent;
            color: inherit;
            border: 2px solid var(--primary-accent);
        }

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

        .map-placeholder {
            background: var(--light-card);
            border: 2px dashed var(--primary-accent);
            border-radius: 20px;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.dark-mode .map-placeholder {
            background: var(--dark-card);
        }

        .map-placeholder button:hover {
            background: var(--secondary-accent);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(90, 173, 173, 0.3);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--primary-accent);
        }

        .slider-slide img {
            cursor: zoom-in;
        }

        /* Vorher-Nachher-Slider Styles */
        /* Grid für mehrere Vorher/Nachher-Slider */
        .before-after-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .before-after-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .before-after-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 40px var(--shadow-strong);
        }

        .before-after-caption {
            text-align: center;
            margin-top: 0.75rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-accent);
        }

        .before-after-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 66.67%;
        }

        .before-after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .after-image {
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
            transition: clip-path 0.1s ease;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--primary-accent);
            cursor: ew-resize;
            transform: translateX(-50%);
            z-index: 10;
        }

        .slider-handle::before {
            content: '⟨ ⟩';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--primary-accent);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            letter-spacing: -5px;
        }

        .image-labels {
            position: absolute;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 5;
        }

        .label {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            backdrop-filter: blur(5px);
        }

                                                .vorher-nachher-section {
            background: var(--light-surface);
        }

        body.dark-mode .vorher-nachher-section {
            background: var(--dark-surface);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
            transition: background 0.3s ease;
            color: #e8e8e8;
        }

		body.dark-mode .navbar {
            background: rgba(26, 26, 26, 0.95);
        }

        body.light-mode .navbar {
            background: rgba(80, 80, 80, 0.95);
			color: #e8e8e8;
        }

        /* Navbar Links auch in Light Mode hell */
		body.light-mode .navbar a {
            color: #e8e8e8;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: inherit;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-accent);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .theme-toggle {
            cursor: pointer;
            width: 50px;
            height: 26px;
            background: var(--dark-surface);
            border-radius: 50px;
            position: relative;
            transition: background 0.3s ease;
        }

        body.dark-mode .theme-toggle {
            background: var(--secondary-accent);
        }

        .theme-toggle::before {
            content: '🌙';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        body.dark-mode .theme-toggle::before {
            content: '☀️';
            transform: translateX(24px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-accent);
            transition: 0.3s;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 2rem;
            background: linear-gradient(135deg, var(--light-surface) 0%, var(--light-bg) 100%);
            position: relative;
            overflow: hidden;
			background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            /* Hero-Hintergrundbild - Falls vorhanden wird es über dem Gradient angezeigt */
            background-image: url('bilder/hero-background.jpg');
        }

        body.dark-mode .hero {
            background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
			background-image: url('bilder/hero-background.jpg');
            background-size: cover;
            background-position: center center;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 2rem;
        }

        .hero-text {
            background: rgba(40, 40, 39, 0.5);
            backdrop-filter: blur(15px);
            padding: 3rem 3.5rem;
            border-radius: 20px;
            max-width: 650px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e8e8e8;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }

        .hero-text h1 span {
            color: var(--accent);
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 1;
            line-height: 1.6;
            color: #d0d0d0;
        }

        body.light-mode .hero-text {
            background: rgba(40, 40, 39, 0.5);
            backdrop-filter: blur(15px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e8e8e8;
        }

        body.light-mode .hero-text h1 {
            color: #ffffff;
        }

        body.light-mode .hero-text p {
            color: #d0d0d0;
        }

        body.dark-mode .hero-text {
            background: rgba(40, 40, 39, 0.5);
            color: #e8e8e8;
        }

        body.dark-mode .hero-text h1 {
            color: #ffffff;
        }

        body.dark-mode .hero-text p {
            color: #d0d0d0;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow-strong);
            font-size: 1rem;
        }

        .cta-call {
            background: var(--primary-accent);
        }

        .cta-call:hover {
            background: var(--secondary-accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px var(--shadow-strong);
        }

        .cta-whatsapp {
            background: #25D366;
        }

        .cta-whatsapp:hover {
            background: #1ebe5d;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }
        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        body.dark-mode .services {
            background: var(--dark-bg);
        }

        

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .section-title span {
            color: var(--accent);
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
			text-align: center;
            background: var(--light-card);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* <img src="bilder/service-aussenreinigung.jpg" alt="Außenreinigung" style="width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 1rem;"> */

        body.dark-mode .service-card {
            background: var(--dark-card);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px var(--shadow-strong);
        }

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

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

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

        .before-after {
            padding: 6rem 2rem;
            background: var(--light-surface);
        }

        body.dark-mode .before-after {
            background: var(--dark-surface);
        }

        .subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
			margin-top: -3rem;
            opacity: 0.8;
        }

        .gallery-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow-strong);
			margin-bottom: 4rem;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .slider-slide {
            min-width: 100%;
            position: relative;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .slider-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .slider-btn:hover {
            background: var(--primary-accent);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--secondary-accent);
            border-color: white;
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: var(--primary-accent);
        }

                                        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--secondary-accent);
            cursor: ew-resize;
            transform: translateX(-50%);
            box-shadow: 0 0 8px rgba(90, 173, 173, 0.3);
        }

        .slider-handle::before {
            content: '◀▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--secondary-accent);
            color: white;
            padding: 1rem;
            border-radius: 50%;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(90, 173, 173, 0.25);
        }

                        .contact {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        body.dark-mode .contact {
            background: var(--dark-bg);
        }

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

        .contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch;
        }

                                                                		
		                                .contact-card-hero {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .contact-card-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent), #25D366, var(--primary-accent));
            background-size: 300% 300%;
            border-radius: 26px;
            animation: glowRotate 4s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes glowRotate {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .contact-card-inner {
            position: relative;
            z-index: 1;
            background: var(--light-card);
            border-radius: 22px;
            padding: 3rem 2.5rem;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        body.dark-mode .contact-card-inner {
            background: var(--dark-card);
        }

        .contact-card-emoji {
            font-size: 3rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .contact-card-icon-row {
            margin-bottom: 0.5rem;
        }

        .contact-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary-accent);
        }

        .contact-card-subtitle {
            font-size: 1.05rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .contact-action-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .contact-action-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .contact-action-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-action-btn:active {
            transform: translateY(-1px) scale(0.99);
        }

        .contact-btn-call {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
        }

        .contact-btn-call:hover {
            box-shadow: 0 8px 30px rgba(118, 145, 151, 0.4);
        }

        .contact-btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .contact-btn-wa:hover {
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }

        .contact-btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            flex-shrink: 0;
        }

        .contact-btn-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .contact-btn-label {
            font-size: 0.85rem;
            opacity: 0.85;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-btn-number {
            font-size: 1.15rem;
            font-weight: 700;
        }

        .contact-card-hours {
            margin-top: 1.5rem;
            font-size: 0.95rem;
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow-strong);
            display: flex;
            flex-direction: column;
        }

        .map-container iframe {
            flex: 1;
            min-height: 300px;
        }

        .map-container .map-placeholder {
            flex: 1;
            min-height: 300px;
            border-radius: 0;
        }
        .map-container h3 {
            text-align: center;
			font-size: 1.5rem;
            font-weight: 700;
			margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-accent);
        }
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .info-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-surface);
            border-radius: 15px;
        }
        body.dark-mode .info-item {
            background: var(--dark-surface);
        }
        .info-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
        .info-section {
            background: var(--light-card);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        body.dark-mode .info-section {
            background: var(--dark-card);
        }
        .info-section h3 {
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .info-grid .info-item {
            display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 0.5rem;
        }
        .info-grid .info-icon {
            font-size: 3rem;
            min-width: 30px;
        }
        .footer {
            background: var(--dark-surface);
            color: var(--text-dark);
            padding: 2rem;
            text-align: center;
        }
        .footer a {
            color: var(--secondary-accent);
            text-decoration: none;
            margin: 0 1rem;
        }
        .footer a:hover {
            text-decoration: underline;
        }
                                @media (max-width: 968px) {
            .hero-content {
                justify-content: center;
                padding: 0 1rem;
            }
            .hero-text {
                padding: 2rem;
                max-width: 100%;
            }
            .hero-text h1 {
                font-size: 2.5rem;
            }
            .nav-links {
                position: fixed;
                top: 102px;
                left: -100%;
                flex-direction: column;
                background: rgba(80, 80, 80, 0.98);
                width: 100%;
                padding: 2rem;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            body.dark-mode .nav-links {
                background: rgba(26, 26, 26, 0.98);
            }
            body.light-mode .nav-links {
                background: rgba(80, 80, 80, 0.98);
            }
            .nav-links a {
                color: #e8e8e8 !important;
            }
            .nav-links.active {
                left: 0;
            }
            .menu-toggle {
                display: flex;
            }
            .contact-row {
                grid-template-columns: 1fr;
            }
           .map-container iframe {
                min-height: 350px;
            }
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 600px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .hero-buttons .cta-button {
                text-align: center;
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
            .contact-card-inner {
                padding: 2rem 1.5rem;
            }
            .contact-card-title {
                font-size: 1.5rem;
            }
            .contact-btn-number {
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar {
                padding: 1rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .map-container iframe {
                min-height: 280px;
            }
            .map-container h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) and (orientation: portrait) {
            .hero {
                min-height: 100vh;
                background-size: cover;
                background-position: center center;
                background-attachment: scroll;
            }          
            .hero-content {
                padding: 0 1rem;
                min-height: 70vh;
                display: flex;
                align-items: center;
            }           
            .hero-text {
                padding: 2rem 1.5rem;
                max-width: 100%;
            }
        }
        @media (max-width: 968px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                background-size: cover;
                background-position: center center;
            }          
            .hero-content {
                padding: 1rem;
            }            
            .hero-text {
                padding: 1.5rem 2rem;
            }            
            .hero-text h1 {
                font-size: 2rem;
            }
        }	
        html {
            scroll-behavior: smooth;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUpSmooth {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in-up {
            animation: fadeInUp 0.6s ease;
        }
        .hero-content.fade-in-up {
            animation: fadeInUpSmooth 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-fill-mode: both;
        }
		.legal-modal-overlay {
			display: none;
			position: fixed;
			inset: 0;
			background: rgba(0, 0, 0, 0.75);
			z-index: 9000;
			justify-content: center;
			align-items: flex-start;
			padding: 2rem 1rem;
			overflow-y: auto;
			backdrop-filter: blur(4px);
		}
		.legal-modal-overlay.active {
			display: flex;
		}
		.legal-modal-box {
			background: var(--dark-card);
			color: var(--text-dark);
			border-radius: 16px;
			max-width: 780px;
			width: 100%;
			padding: 2.5rem;
			position: relative;
			box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
			margin: auto;
		}
		body.light-mode .legal-modal-box {
			background: var(--light-card);
			color: var(--text-light);
		}
		.legal-modal-close {
			position: absolute;
			top: 1.2rem;
			right: 1.2rem;
			font-size: 1.6rem;
			cursor: pointer;
			color: var(--primary-accent);
			background: none;
			border: none;
			line-height: 1;
			transition: color 0.2s ease;
		}
		.legal-modal-close:hover {
			color: var(--secondary-accent);
		}
		.legal-modal-box h1 {
			font-size: 1.8rem;
			color: var(--primary-accent);
			margin-bottom: 1.5rem;
			padding-right: 2rem;
		}
		.legal-modal-box h2 {
			font-size: 1.2rem;
			color: var(--secondary-accent);
			margin-top: 1.8rem;
			margin-bottom: 0.6rem;
		}
		.legal-modal-box h3 {
			font-size: 1rem;
			color: var(--primary-accent);
			margin-top: 1.2rem;
			margin-bottom: 0.4rem;
		}
		.legal-modal-box p {
			margin-bottom: 0.8rem;
			line-height: 1.7;
			font-size: 0.92rem;
		}
		.legal-modal-box ul {
			margin: 0.5rem 0 0.8rem 1.5rem;
			font-size: 0.92rem;
			line-height: 1.7;
		}
		.legal-modal-box a {
			color: var(--secondary-accent);
		}
		.legal-modal-contact-box {
			background: var(--dark-surface);
			padding: 1.2rem 1.5rem;
			border-radius: 10px;
			margin: 0.8rem 0;
			border-left: 3px solid var(--primary-accent);
			font-size: 0.92rem;
			line-height: 1.7;
		}
		body.light-mode .legal-modal-contact-box {
			background: var(--light-surface);
		}
		@media (max-width: 600px) {
			.legal-modal-box {
				padding: 1.5rem 1.2rem;
			}
			.legal-modal-box h1 {
				font-size: 1.4rem;
			}
		}
