        :root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --primary-light: #e0fbfc;
            --secondary: #f8961e;
            --secondary-dark: #f3722c;
            --background: #f8f9fa;
            --card-bg: #ffffff;
            --text: #14213d;
            --text-light: #6c757d;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        /* Basis-Styles */
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            font-family: var(--font-family);
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Willkommensnachricht */
        .welcome-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 20px;
            text-align: center;
            z-index: 1001;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .welcome-banner.show {
            transform: translateY(0);
        }

        .welcome-content {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 1200px;
            width: 100%;
            justify-content: center;
        }

        .welcome-icon {
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        .welcome-text {
            font-weight: 600;
            font-size: 1rem;
        }

        .welcome-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .welcome-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        /* Moderner Header mit Glas-Effekt */
        header {
            background: rgba(67, 97, 238, 0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: white;
            padding: 0.8rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            transition: top 0.3s ease;
        }

        header.with-banner {
            top: 50px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .logo img {
            height: 50px;
            transition: transform 0.3s ease;
            border-radius: 5px;
        }

        .logo img:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        /* Modernes Navigationsmenü */
        .main-nav ul {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-tel {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 2rem;
            padding-left: 2rem;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-tel a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            white-space: nowrap;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-tel a:hover {
            color: var(--secondary);
        }

        /* Hero-Section mit modernem Gradient */
        .hero {
            background: 
                linear-gradient(rgba(67, 97, 238, 0.9), rgba(58, 12, 163, 0.9)),
                url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1400&q=80") no-repeat center/cover;
            color: white;
            padding: 10.9rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 30%, rgba(248, 150, 30, 0.15) 0%, transparent 50%);
        }

        .hero h1 {
            margin: 0 0 1.5rem;
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            position: relative;
        }

        .hero button {
            background: var(--secondary);
            border: none;
            color: white;
            font-weight: 600;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(248, 150, 30, 0.4);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .hero button:hover::before {
            transform: translateX(100%);
        }

        .hero button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(248, 150, 30, 0.5);
        }

        /* Unsere Leistungen - Moderner Card-Style */
        #services {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        #services h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
        }

        #services h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            text-decoration: none;
        }

        .card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem 1.5rem;
            height: 150px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transition: height 0.3s ease;
            text-decoration: none;
        }

        .card:hover::before {
            height: 6px;
        }

        .card svg {
            width: 56px;
            height: 56px;
            margin-bottom: 1.5rem;
            stroke: var(--primary);
            stroke-width: 1.5;
            fill: none;
            transition: var(--transition);
        }

        .card:hover svg {
            stroke: var(--secondary);
            transform: rotate(5deg) scale(1.1);
        }

        .card-link {
            text-decoration: none !important;
        }

        .card p {
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0;
            color: var(--text);
            text-decoration: none !important;
        }

        .card:hover p {
            color: var(--text);
            text-decoration: none !important;
        }

        /* Vorteile-Sektion */
        #advantages {
            padding: 4rem 2rem;
            background: linear-gradient(to bottom, rgba(224, 251, 252, 0.3) 0%, rgba(224, 251, 252, 0) 100%);
            margin: 2rem 0;
        }

        #advantages h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
        }

        #advantages h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .advantage-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .adv-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 1.75rem;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .adv-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transition: height 0.3s ease;
        }

        .adv-card:hover::after {
            height: 6px;
        }

        .adv-card svg {
            width: 48px;
            height: 48px;
            stroke: var(--primary);
            fill: none;
            margin-bottom: 1.25rem;
            transition: var(--transition);
        }

        .adv-card:hover svg {
            stroke: var(--secondary);
            transform: scale(1.1);
        }

        .adv-card p {
            margin: 0;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
        }

        /* Erstberatung & Schadensabwicklung Section */
        #consultation {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        #consultation h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
        }

        #consultation h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .consultation-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .consultation-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .consultation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transition: height 0.3s ease;
        }

        .consultation-card:hover::before {
            height: 6px;
        }

        .consultation-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .consultation-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 1.5rem;
            stroke: var(--primary);
            stroke-width: 1.5;
            fill: none;
            transition: var(--transition);
        }

        .consultation-card:hover .consultation-icon {
            stroke: var(--secondary);
            transform: rotate(5deg) scale(1.1);
        }

        .consultation-card h3 {
            margin: 0 0 1rem 0;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .consultation-card p {
            margin: 0 0 1.5rem 0;
            color: var(--text-light);
            flex-grow: 1;
        }

        .consultation-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        .consultation-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: var(--text);
        }

        .consultation-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .consultation-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: var(--transition);
            margin-top: auto;
            width: fit-content;
        }

        .consultation-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
        }

        /* Schritt-für-Schritt-Sektion */
        .steps-section {
            padding: 5rem 2rem;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            position: relative;
            overflow: hidden;
            margin: 3rem 2rem;
        }

        .steps-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(248, 150, 30, 0.2) 0%, transparent 70%);
        }

        .steps-section h2 {
            color: white;
            margin-bottom: 3rem;
            position: relative;
            font-size: 2rem;
            text-align: center;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            background: var(--secondary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(248, 150, 30, 0.3);
        }

        .step-content h3 {
            margin: 0 0 1rem 0;
            color: var(--primary-dark);
            font-size: 1.25rem;
        }

        .step-content p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Team-Sektion */
        #team {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        #team h2 {
            margin-bottom: 3rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
        }

        #team h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .teamback {
            max-width: 300px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .teamback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transition: height 0.3s ease;
        }

        .teamback:hover::before {
            height: 6px;
        }

        #team img {
            width: 100%;
            height: auto;
            max-height: 350px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .teamback:hover img {
            transform: scale(1.02);
        }

        #team h3 {
            margin: 0.5rem 0 0.2rem;
            color: var(--primary-dark);
            font-size: 1.5rem;
        }

        #team p {
            margin: 0;
            font-style: italic;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* FAQ-Sektion */
        #faq {
            padding: 5rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        #faq h2 {
            margin-bottom: 3rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            text-align: center;
            position: relative;
        }

        #faq h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        details {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            padding: 1.25rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        details:hover {
            box-shadow: var(--shadow-hover);
        }

        details[open] {
            padding-bottom: 1.5rem;
        }

        summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            outline: none;
            position: relative;
            padding-right: 30px;
            color: var(--primary-dark);
            transition: color 0.3s ease;
            list-style: none;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        details[open] summary::after {
            content: '-';
            color: var(--secondary);
        }

        details[open] summary {
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        details p {
            margin-top: 0.75rem;
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }

        footer p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Cookie-Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 400px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 10000;
            transform: translateY(150%);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-content h3 {
            margin-top: 0;
            margin-bottom: 0.75rem;
            color: var(--primary-dark);
            font-size: 1.25rem;
        }

        .cookie-content p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-light);
        }

        .cookie-options {
            margin-bottom: 1.5rem;
        }

        .cookie-option {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: rgba(67, 97, 238, 0.05);
            border-radius: 8px;
        }

        .cookie-option input[type="checkbox"] {
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            accent-color: var(--primary);
        }

        .cookie-option label {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            margin-bottom: 0.25rem;
            display: block;
        }

        .cookie-info {
            display: block;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .cookie-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .cookie-btn {
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            flex: 1;
            min-width: 120px;
        }

        .cookie-btn.primary {
            background: var(--primary);
            color: white;
        }

        .cookie-btn.primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .cookie-btn.secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .cookie-btn.secondary:hover {
            background: rgba(67, 97, 238, 0.1);
        }

        .cookie-btn.link {
            background: transparent;
            color: var(--text-light);
            text-decoration: underline;
            border: none;
        }

        .cookie-btn.link:hover {
            color: var(--text);
        }

        .cookie-links {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
        }

        .cookie-links a {
            color: var(--text-light);
            text-decoration: none;
        }

        .cookie-links a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Responsive Anpassungen */
        @media (max-width: 1024px) {
            .hero {
                padding: 4rem 2rem;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .welcome-content {
                flex-direction: column;
                gap: 8px;
            }
            
            .welcome-text {
                font-size: 0.9rem;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .main-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-tel {
                margin-left: 0;
                padding-left: 0;
                border-left: none;
                justify-content: center;
                margin-top: 0.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.05rem;
            }
            
            .cards, .advantage-cards, .consultation-container {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .steps-section {
                margin: 3rem 1rem;
            }
            
            .cookie-banner {
                bottom: 0;
                right: 0;
                left: 0;
                max-width: none;
                border-radius: 0;
                border-bottom-left-radius: var(--border-radius);
                border-bottom-right-radius: var(--border-radius);
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1.5rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
            
            #services h2, #advantages h2, #consultation h2, #team h2, #faq h2 {
                font-size: 1.7rem;
            }
            
            .step {
                padding: 1.5rem;
            }
            
            .consultation-card {
                padding: 1.5rem;
            }
        }