:root {
    /* Layout */
    --container-max-width: 1600px;
    --container-padding: clamp(15px, 5vw, 40px);
    --section-spacing: clamp(2rem, 5vw, 5rem);
    
    /* Moderne Farbpalette */
    --primary-color: #1a1a2e;
    --secondary-color: #f1f1f1;
    --accent-color: #346596;
    --accent-hover: #3a56d4;
    
    --text-color: #333333;
    --text-secondary-color: #346596;
    --background-color: #ffffff;
    --light-background: #f8f9fa;
    
    --link-color: #346596;
    --link-hover-color: #3a56d4;
    
    --btn-primary-color: #346596;
    --btn-secondary-color: #3a56d4;
    --button-text: #ffffff;
    
    --nav-background: rgba(255, 255, 255, 0.98);
    --footer-background: #f8f9fa;
    --tile-background: rgba(248, 249, 250, 0.8);
    
    /* Komponenten */
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --border-color: #e0e0e0;
    
    /* Effekte */
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Glaseffekt */
    --glass-background: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-blur: blur(10px);
    
    /* Gradienten */
    --gradient-primary: linear-gradient(135deg, #346596, #3a56d4);
    --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color var(--transition-fast), background-color var(--transition-fast),
                transform var(--transition-fast), box-shadow var(--transition-fast),
                border var(--transition-fast);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.main-content {
    flex: 1;
    margin: var(--section-spacing) 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--link-hover-color);
}

/* Anker-Links für Navigation */
.anchor-link {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

/* Header mit Scroll-Effekt */
.header {
    background-color: var(--nav-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: sticky; /* Bleibt am Desktop sticky */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--box-shadow-sm);
}

/* Der Header-Spacer wird nicht mehr benötigt und kann entfernt werden */
.header-spacer {
    display: none;
}

.navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.logo {
    z-index: 10;
}

.logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation Grundstile - für alle Bildschirmgrößen */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: var(--text-color);
    padding: 0.5rem;
    font-weight: 500;
    display: block;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-list > li > a:hover {
    color: var(--text-secondary-color);
}

/* Dropdown-Basics - für alle Bildschirmgrößen */
.dropdown-list {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.75rem;
    border: var(--glass-border);
    z-index: 1000;
    list-style: none;
}

.dropdown-item > a {
    padding: 0.75rem;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-item > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary-color);
}

/* Mobile Navigation Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* DESKTOP STYLES */
@media (min-width: 769px) {
    .header {
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Optionaler Effekt: Header wird dunkler beim Scrollen */
    .header.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--box-shadow);
    }

    .dropdown-list {
        position: absolute;
        top: 120%;
        left: 0;
        min-width: 240px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .has-dropdown > a::after {
        content: '▼';
        font-size: 0.7em;
        margin-left: 5px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown:hover > a::after {
        transform: rotate(180deg);
    }
    
    .has-dropdown:hover > .dropdown-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        top: 100%;
    }
    
    .dropdown-item > a {
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-item > a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }
    
    .dropdown-item > a:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    /* Rechtsbündige Dropdowns */
    li:last-child .dropdown-list, 
    li:nth-last-child(2) .dropdown-list {
        right: 0;
        left: auto;
    }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .header {
        position: relative; /* Auf Mobilgeräten nicht sticky, damit es über dem Hero liegt */
        top: auto;
    }
    
    .hero-split {
        margin-top: 0; /* Kein zusätzlicher Abstand nötig */
    }
    
    /* Navigationsleiste auf volle Breite und unter Logo */
    .navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Logo und Menüpunkte untereinander */
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        align-items: flex-start;
        gap: 0;
    }
    
    /* Vollbreite für Menüpunkte */
    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list > li:last-child {
        border-bottom: none;
    }
    
    .nav-list > li > a {
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Dropdown-Pfeile auf mobilen Geräten */
    .has-dropdown > a::after {
        content: '▼';
        font-size: 0.8em;
        transition: transform 0.3s ease;
    }
    
    .dropdown-active > a::after {
        transform: rotate(180deg);
    }
    
    /* Dropdowns als Untermenü anzeigen */
    .dropdown-list {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: hidden;
        display: none;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        padding: 0 0 0 1rem !important;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border: none;
    }
    
    /* Aktives Dropdown-Menü anzeigen */
    li.dropdown-active > .dropdown-list {
        display: block;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.hero-text-div {
    position: relative;
    z-index: 15;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text-h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-text-p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Moderne Hero-Split-Section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: clamp(2rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-headline {
    max-width: 600px;
}

.hero-headline .subtitle {
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: var(--border-radius-full);
    font-weight: 600;
}

.hero-headline h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-headline .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-headline p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 90%;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.scroll-indicator svg {
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 90%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 10;
    box-shadow: var(--box-shadow-lg);
}

.shape-blob {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(52, 101, 150, 0.4), rgba(58, 86, 212, 0.2));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    bottom: 15%;
    left: 25%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(58, 86, 212, 0.3), rgba(52, 101, 150, 0.2));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    z-index: 1;
    animation: morph 8s ease-in-out infinite alternate-reverse;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Slider */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Buttons */
.cta-button {
    background: var(--gradient-primary);
    color: var(--button-text);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    transition: all var(--transition-normal);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.outline-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.outline-button:hover {
    background: rgba(52, 101, 150, 0.1);
    transform: translateY(-3px);
}

.button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--btn-primary-color);
    color: var(--button-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    display: inline-block;
    margin-top: 1rem;
}

.button:hover {
    background-color: var(--btn-secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

/* Moderne Sektionen */
.section-services, 
.section-feature, 
.section-location {
    padding: var(--section-spacing) 0;
}

.section-services {
    background-color: var(--light-background);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 800px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Verbesserte Service-Karten */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

/* Services Section (ältere Implementierung) */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    position: relative;
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
}

/* Feature-Bereich mit Bild */
.feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    font-weight: bold;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

/* Tile Sections */
.tile-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tile-section-item {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
}

.tile-section-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tile-list {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
}

.tile-list h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tile-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.tile-list-ul li {
    margin-bottom: 0.75rem;
}

.tile-flexbox {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* CTA-Bereich */
.cta-section {
    margin: 4rem 0;
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    border: var(--glass-border);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Standort-Bereich mit Karte und Infos */
.map-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-card address {
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

/* Maps */
.google-maps {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 450px;
}

.google-maps iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-form, .contact-options {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.contact-options-ul {
    list-style: none;
    padding: 0;
}

.contact-p {
    margin: 0;
}

/* Form Elements */
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-color);
    font-size: 1rem;
    transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--text-secondary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    position: relative;
    padding: 2rem;
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-icon {
    margin-top: 1.5rem;
    color: var(--accent-color);
}

.step p {
    font-weight: 400;
    margin: 0.5rem 0;
}

/* FAQ-Bereich */
.faq-section {
    margin: 4rem 0;
}

.faq {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: var(--light-background);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(52, 101, 150, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-answer {
    display: none;
    padding: 1.25rem;
    background: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow-sm);
}

/* Pakete und Konfigurationen */
.packages-grid,
.pc-configs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card,
.config-card {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover,
.config-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.package-card.featured,
.config-card.featured {
    border: 1px solid rgba(52, 101, 150, 0.3);
    transform: scale(1.03);
    box-shadow: var(--box-shadow-lg);
}

.package-card.featured:hover,
.config-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.package-badge,
.config-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    z-index: 10;
}

.package-header,
.config-header {
    background: rgba(52, 101, 150, 0.05);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(52, 101, 150, 0.1);
}

.package-header h3,
.config-header h3 {
    margin: 0 0 0.5rem;
    color: var(--accent-color);
}

.package-price,
.config-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.package-features,
.config-specs {
    padding: 1.5rem;
    flex-grow: 1;
}

.package-features ul,
.config-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li,
.config-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child,
.config-specs li:last-child {
    border-bottom: none;
}

.config-desc {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.package-card .outline-button,
.package-card .cta-button,
.config-card .outline-button,
.config-card .cta-button {
    margin: 0 1.5rem 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    color: rgba(52, 101, 150, 0.2);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #666;
}

/* Footer Modernization */
footer {
    background-color: var(--footer-background);
    color: var(--text-color);
    padding: 4rem 0 0;
    margin-top: auto;
    position: relative;
    border-top: 1px solid var(--border-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding) 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links p,
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: transform var(--transition-fast), color var(--transition-fast);
    display: inline-block;
    margin: 0;
}

.footer-links a:hover {
    color: var(--text-secondary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Alert Header */
.alert-header {
    background-color: #ff3c5c;
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.alert-header h1 {
    font-size: 1.2rem;
    margin: 0;
}

/* Team Grid Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.team-image {
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.team-position {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Kontaktseite Styles */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-info-card p {
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--text-color);
    transition: color var(--transition-normal);
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

.social-contact {
    text-align: center;
    margin: 3rem 0;
}

.social-contact h3 {
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.contact-form-section,
.map-section {
    background: var(--tile-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    border: var(--glass-border);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 0.875rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 101, 150, 0.1);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 1rem;
}

.map-wrapper {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.directions {
    margin-top: 2rem;
}

.directions h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.transport-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.transport-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: transform var(--transition-normal);
}

.transport-option:hover {
    transform: translateY(-5px);
}

.transport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(52, 101, 150, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.transport-option h4 {
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--container-padding);
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }
    
    .feature-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .hero-text-div {
        padding: 1.5rem;
        width: 90%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .cta-button,
    .hero-actions .outline-button {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        margin-top: 2rem;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-list li {
        align-items: center;
    }
    
    .services, 
    .tile-section, 
    .process-steps, 
    .contact,
    .packages-grid,
    .pc-configs,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured,
    .config-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover,
    .config-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .google-maps {
        height: 350px;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons button {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 200px;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-submit {
        grid-column: span 1;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .contact-form-section,
    .map-section {
        padding: 1.5rem;
    }
    
    /* Weitere mobile Anpassungen */
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding: 3rem var(--container-padding) 2rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    /* Scroll-Indikator auf Mobilgeräten anders positionieren */
    .scroll-indicator {
        bottom: 1rem;
        position: relative;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: -1; /* Bild zuerst anzeigen */
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
    
    .hero {
        min-height: 350px;
    }
    
    .hero-text-h1 {
        font-size: 1.8rem;
    }
    
    .hero-text-p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .google-maps {
        height: 250px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .nav-list > li > a {
        padding: 0.8rem 0;
    }
    
    .hero-content {
        padding: 2rem var(--container-padding) 1rem;
    }
    
    .hero-headline h1 {
        font-size: 2rem;
    }
    
    .hero-headline p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}


/* News-Detailseite Styles */
.news-filter {
    margin-bottom: 3rem;
}

.filter-wrapper {
    background-color: var(--color-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.filter-wrapper h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover, .filter-tag.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.full-news-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    /* color: white; */
    padding: 1.5rem;
    min-width: 90px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 1rem;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.news-date .year {
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.news-meta {
    padding: 1.5rem;
    flex: 1;
}

.news-meta h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.news-tag {
    display: inline-block;
    background-color: var(--color-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

.news-body {
    padding: 1.5rem;
}

.news-body p {
    margin-top: 0;
    line-height: 1.6;
}

.news-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .news-date .day, .news-date .month, .news-date .year {
        font-size: 1rem;
        margin: 0;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease;
    padding: 1rem 0;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.cookie-btn.accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(52, 101, 150, 0.2);
}

.cookie-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 101, 150, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
}

.cookie-btn.decline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* Shop Styles */
.shop-filter {
    margin-bottom: 3rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-description {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.product-link {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--accent-color);
}

.shop-note {
    margin: 4rem 0;
}

.note-box {
    background-color: var(--color-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.note-box h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.note-box p {
    margin-bottom: 1.5rem;
}

/* Produktdetailseite */
.breadcrumb {
    margin: 2rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-text);
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    color: var(--accent-color);
    font-weight: 500;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-gallery {
    width: 100%;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-row {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detailed h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.product-category {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-highlights {
    margin-top: 2rem;
}

.product-highlights h3 {
    margin-bottom: 1rem;
}

.product-highlights ul {
    padding-left: 1.5rem;
}

.product-highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.product-tabs {
    margin-bottom: 4rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.specs-table {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.5rem;
}

.spec-row {
    display: contents;
}

.spec-name, .spec-value {
    padding: 0.8rem;
}

.spec-name {
    font-weight: 500;
    background-color: var(--color-light);
    border-radius: 4px;
}

.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    margin-bottom: 2rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-not-found {
    text-align: center;
    padding: 4rem 0;
}

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 auto;
        text-align: center;
        padding: 0.8rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .specs-table {
        grid-template-columns: 1fr;
    }
    
    .spec-name, .spec-value {
        padding: 0.5rem;
    }
}