/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Define CSS Variables for Colors */
:root {
    --hvd-dark-teal: #003333; /* Dark teal from images */
    --hvd-lime-green: #80C000; /* Lime green from images */
    --hvd-orange: #ff6b35; /* Orange accent color */
    --hvd-black: #000000;
    --hvd-white: #ffffff;
    --hvd-light-gray: #f5f5f5;
    --hvd-medium-gray: #666666;
    --hvd-dark-gray: #333333;
    
    /* Modern Design Variables */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(128, 192, 0, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--hvd-dark-teal) 0%, #004d4d 100%);
    --gradient-accent: linear-gradient(135deg, var(--hvd-lime-green) 0%, #6fa300 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #e0f2f1 50%, #b2dfdb 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--hvd-dark-gray);
    background-color: var(--hvd-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header und Navigation */
.header {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 100 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, background, box-shadow;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 80px !important;
}

/* Scrolled header state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 8px 0;
}


.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    pointer-events: none;
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: flex-direction, justify-content, gap;
}

/* Scrolled header state */
.header.scrolled .nav-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    transition: var(--transition);
}

.cookie-settings-icon {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--hvd-lime-green), #8bc34a);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none; /* Versteckt bis Cookie-Zustimmung */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.cookie-settings-icon:hover {
    background: linear-gradient(135deg, #a0d000, #7cb342);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.5), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #f0f8e8;
}

.cookie-settings-icon i {
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cookie-settings-icon:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0;
    will-change: transform, width, height;
}

/* Scrolled state logo */
.header.scrolled .logo-image {
    width: 250px;
    height: 250px;
    margin: 0;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, padding, gap;
}

/* Scrolled state navigation */
.header.scrolled .nav-menu {
    padding: 8px 16px;
    gap: 2px;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.nav-menu:hover::before {
    left: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--hvd-dark-gray);
    font-weight: 600;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 30px;
    margin: 0 2px;
    overflow: hidden;
    font-size: 0.95rem;
    z-index: 2;
    will-change: transform, padding, font-size;
}

/* Scrolled state nav links */
.header.scrolled .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 30px;
    box-shadow: var(--shadow-glow);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--hvd-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: var(--hvd-white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

.nav-link.active::before {
    opacity: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Main curved content area for homepage */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: var(--gradient-primary);
    border-radius: 0;
    margin: 0 0 0 0;
    padding: 100px 0 120px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(128, 192, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 51, 51, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="heroDots" width="300" height="300" patternUnits="userSpaceOnUse"><circle cx="45" cy="67" r="1.3" fill="rgba(255,255,255,0.08)"/><circle cx="123" cy="23" r="0.9" fill="rgba(255,255,255,0.06)"/><circle cx="234" cy="89" r="1.6" fill="rgba(255,255,255,0.1)"/><circle cx="156" cy="178" r="0.7" fill="rgba(255,255,255,0.05)"/><circle cx="78" cy="145" r="1.2" fill="rgba(255,255,255,0.07)"/><circle cx="267" cy="34" r="1.0" fill="rgba(255,255,255,0.06)"/><circle cx="34" cy="234" r="1.4" fill="rgba(255,255,255,0.09)"/><circle cx="189" cy="67" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="201" cy="156" r="1.1" fill="rgba(255,255,255,0.08)"/><circle cx="89" cy="201" r="0.6" fill="rgba(255,255,255,0.04)"/><circle cx="145" cy="45" r="1.5" fill="rgba(255,255,255,0.09)"/><circle cx="23" cy="123" r="0.9" fill="rgba(255,255,255,0.06)"/><circle cx="278" cy="178" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="112" cy="234" r="0.7" fill="rgba(255,255,255,0.05)"/><circle cx="234" cy="123" r="1.3" fill="rgba(255,255,255,0.08)"/><circle cx="67" cy="89" r="0.8" fill="rgba(255,255,255,0.06)"/><circle cx="178" cy="23" r="1.0" fill="rgba(255,255,255,0.07)"/><circle cx="45" cy="201" r="1.4" fill="rgba(255,255,255,0.09)"/><circle cx="256" cy="67" r="0.9" fill="rgba(255,255,255,0.06)"/><circle cx="123" cy="145" r="1.1" fill="rgba(255,255,255,0.08)"/><circle cx="34" cy="78" r="0.6" fill="rgba(255,255,255,0.04)"/><circle cx="189" cy="234" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="201" cy="45" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="78" cy="167" r="1.2" fill="rgba(255,255,255,0.07)"/><circle cx="145" cy="201" r="0.9" fill="rgba(255,255,255,0.06)"/><circle cx="267" cy="123" r="1.3" fill="rgba(255,255,255,0.08)"/><circle cx="56" cy="34" r="0.7" fill="rgba(255,255,255,0.05)"/><circle cx="234" cy="201" r="1.1" fill="rgba(255,255,255,0.08)"/><circle cx="89" cy="112" r="0.6" fill="rgba(255,255,255,0.04)"/><circle cx="178" cy="145" r="1.4" fill="rgba(255,255,255,0.09)"/><circle cx="112" cy="78" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="256" cy="234" r="1.0" fill="rgba(255,255,255,0.07)"/></pattern></defs><rect width="300" height="300" fill="url(%23heroDots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(128, 192, 0, 0.05) 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 51, 51, 0.1) 100%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--hvd-white);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--hvd-white);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.hero-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 20rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
    border: none;
    margin-bottom: 1rem;
    background-color: transparent;
}

.hero-button {
    background: var(--gradient-accent);
    color: var(--hvd-white);
    padding: 20px 40px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.hero-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover::after {
    width: 300px;
    height: 300px;
}

.hero-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Main Content Area for Quality Service and Stickerei pages */
.main-content {
    background: var(--gradient-primary);
    min-height: 100vh;
    color: var(--hvd-white);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(128, 192, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 51, 51, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="randomDots" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="23" cy="45" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="67" cy="12" r="0.8" fill="rgba(255,255,255,0.06)"/><circle cx="134" cy="78" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="89" cy="156" r="0.6" fill="rgba(255,255,255,0.05)"/><circle cx="156" cy="34" r="1.1" fill="rgba(255,255,255,0.07)"/><circle cx="45" cy="123" r="0.9" fill="rgba(255,255,255,0.06)"/><circle cx="178" cy="145" r="1.3" fill="rgba(255,255,255,0.09)"/><circle cx="12" cy="89" r="0.7" fill="rgba(255,255,255,0.05)"/><circle cx="167" cy="67" r="1.0" fill="rgba(255,255,255,0.08)"/><circle cx="78" cy="34" r="0.8" fill="rgba(255,255,255,0.06)"/><circle cx="145" cy="123" r="1.4" fill="rgba(255,255,255,0.09)"/><circle cx="34" cy="167" r="0.9" fill="rgba(255,255,255,0.07)"/><circle cx="123" cy="45" r="1.1" fill="rgba(255,255,255,0.08)"/><circle cx="56" cy="98" r="0.6" fill="rgba(255,255,255,0.05)"/><circle cx="189" cy="23" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="98" cy="189" r="0.7" fill="rgba(255,255,255,0.06)"/><circle cx="23" cy="156" r="1.3" fill="rgba(255,255,255,0.09)"/><circle cx="156" cy="98" r="0.8" fill="rgba(255,255,255,0.06)"/><circle cx="67" cy="23" r="1.0" fill="rgba(255,255,255,0.07)"/><circle cx="134" cy="156" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23randomDots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 30%, rgba(128, 192, 0, 0.05) 70%, transparent 100%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}

/* Price Section - White Background */
.price-section {
    background: linear-gradient(135deg, var(--hvd-white) 0%, #f8f9fa 100%);
    color: var(--hvd-dark-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 51, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 192, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.price-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 51, 51, 0.1) 20%, rgba(0, 51, 51, 0.1) 80%, transparent 100%);
    opacity: 0.5;
}

.price-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--hvd-black);
}

.price-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.price-intro p {
    margin-bottom: 0.5rem;
    color: var(--hvd-dark-gray);
}

.price-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.price-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hvd-lime-green);
    border-radius: 8px 8px 0 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 0.9rem;
    min-width: 100%;
    table-layout: fixed;
}

.price-table th,
.price-table td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 6px;
    text-align: center;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.price-table th:first-child,
.price-table td:first-child {
    width: 8%;
}

.price-table th:not(:first-child):not(:last-child),
.price-table td:not(:first-child):not(:last-child) {
    width: 8%;
}

.price-table th:last-child,
.price-table td:last-child {
    width: 12%;
}

.price-table th {
    background: var(--hvd-dark-teal);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    border: none;
    position: relative;
    padding: 15px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    line-height: 1.2;
}

.price-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--hvd-lime-green);
}

.price-table td {
    color: var(--hvd-dark-gray);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-left: 1px solid rgba(0, 51, 51, 0.1);
    border-right: 1px solid rgba(0, 51, 51, 0.1);
    transition: all 0.3s ease;
}

.price-table tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.8);
}

.price-table tbody tr:hover td {
    background: rgba(128, 192, 0, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(128, 192, 0, 0.15);
    border-color: rgba(128, 192, 0, 0.2);
}

.price-table tbody tr:hover {
    box-shadow: 0 8px 25px rgba(128, 192, 0, 0.15);
}

.price-table tbody tr {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 3px 0;
}

.price-notes {
    margin-bottom: 3rem;
}

.price-notes ul {
    list-style: none;
    padding: 0;
}

.price-notes li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--hvd-dark-gray);
    line-height: 1.6;
}

.price-notes li:before {
    content: "•";
    color: var(--hvd-dark-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price-contact {
    text-align: center;
}

.price-contact p {
    margin-bottom: 1rem;
    color: var(--hvd-dark-gray);
}

/* Stick & NAHT specific styles */
.stick-naht-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.stick-naht-text p {
    margin-bottom: 1.5rem;
    color: var(--hvd-white);
    line-height: 1.8;
}

.contact-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.products-link {
    margin-top: 1rem;
}

.products-button {
    background-color: var(--hvd-lime-green);
    color: var(--hvd-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.products-button:hover {
    background-color: #6fa300;
}

/* Spezielle Bildgrößen für verschiedene Sektionen */
.hero-images .hero-image {
    width: 20rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

.content-grid .section-image {
    width: 20rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

.professionals-image .section-image {
    width: 20rem;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

/* Spezielle organische Formen für verschiedene Bildtypen */
.embroidery-machine-image {
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

.textile-selection-image {
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

.efficiency-image {
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

.data-processing-image {
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
}

/* Responsive Bildgrößen */
@media (max-width: 768px) {
    .hero-image {
        max-width: 280px;
        height: 180px;
    }
    
    .section-image {
        height: 200px;
    }
    
    .professionals-image .section-image {
        max-width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 250px;
        height: 150px;
    }
    
    .section-image {
        height: 150px;
    }
    
    .professionals-image .section-image {
        max-width: 250px;
        height: 150px;
    }
}

.intro-section {
    padding: 60px 0;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--hvd-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--hvd-white);
}

.intro-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-button {
    background: var(--gradient-accent);
    color: var(--hvd-white);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.contact-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.contact-form-button:hover::before {
    left: 100%;
}

.contact-form-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(128, 192, 0, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.content-section:hover::before {
    opacity: 1;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
    opacity: 0.3;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(0, 51, 51, 0.03) 0%, transparent 50%, rgba(128, 192, 0, 0.01) 100%);
}

.content-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(128, 192, 0, 0.01) 0%, transparent 50%, rgba(0, 51, 51, 0.03) 100%);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--hvd-white);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
}

/* Special styling for contact section titles */
.contact-section .section-title {
    color: var(--hvd-dark-teal);
    background: linear-gradient(135deg, var(--hvd-dark-teal) 0%, var(--hvd-lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    transition: var(--transition);
}

.content-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(128, 192, 0, 0.3) 50%, transparent 100%);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    opacity: 0;
}

.content-grid:hover::before {
    height: 80%;
    opacity: 1;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-grid.reverse .content-image {
    order: 2;
}

.content-grid.reverse .content-text {
    order: 1;
}

.content-grid.reverse::before {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 51, 51, 0.3) 50%, transparent 100%);
}

.content-text {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(128, 192, 0, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.content-text:hover::before {
    opacity: 1;
}

.content-text:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    margin-bottom: 2rem;
    text-align: left;
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 192, 0, 0.05) 0%, transparent 50%, rgba(0, 51, 51, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.content-image:hover::before {
    opacity: 1;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.2);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-image {
    width: 20rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 22% 78% 70%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    box-shadow: 
        var(--shadow-heavy),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(128, 192, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.section-image:hover::before {
    opacity: 1;
}

.section-image:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Professionals Section */
.professionals-content {
    text-align: center;
}

.professionals-image {
    margin-bottom: 2rem;
}

.professionals-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--hvd-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--hvd-light-gray);
    color: var(--hvd-dark-gray);
    border: 1px solid #ddd;
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-secondary {
    background-color: var(--hvd-light-gray);
    color: var(--hvd-dark-gray);
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Form Styles */
.contact-form {
    background: var(--hvd-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--hvd-dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--hvd-white);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--hvd-lime-green);
    box-shadow: 0 0 0 3px rgba(128, 192, 0, 0.1);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: var(--hvd-medium-gray);
}

textarea.form-control {
    resize: vertical;
}


.file-upload-label {
    display: inline-block;
    background-color: var(--hvd-light-gray);
    color: var(--hvd-dark-gray);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.file-upload-label:hover {
    background-color: #e0e0e0;
}

.file-upload-input {
    display: none;
}

.file-name {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--hvd-medium-gray);
}

.form-message {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--hvd-dark-teal) 0%, #004d4d 100%);
    color: var(--hvd-white);
    padding: 1rem 0;
    border-top: 2px solid var(--hvd-lime-green);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--hvd-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--hvd-lime-green);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 51, 0.95);
    color: var(--hvd-white);
    padding: 1.5rem;
    z-index: 100000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--hvd-lime-green);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

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

/* Cookie Overlay - Blockiert Website bis Cookies bestätigt */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-overlay.hidden {
    display: none;
}

/* Sicherstellen, dass Cookie-Overlay über allem liegt */
.cookie-overlay {
    z-index: 999999 !important;
}

.cookie-overlay .cookie-banner {
    z-index: 1000000 !important;
}

.cookie-overlay .cookie-banner {
    position: relative;
    transform: none;
    margin: 1rem;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-overlay .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

.cookie-overlay .cookie-text h3 {
    color: var(--hvd-lime-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-overlay .cookie-text h3 i {
    font-size: 1.8rem;
}

.cookie-overlay .cookie-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-overlay .cookie-buttons {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-overlay .cookie-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--hvd-lime-green);
}

.cookie-overlay .cookie-info p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-overlay .btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 140px;
}

.cookie-overlay .btn-accept {
    background: var(--hvd-lime-green);
    color: var(--hvd-dark-green);
}

.cookie-overlay .btn-accept:hover {
    background: #8bc34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

.cookie-overlay .btn-decline {
    background: #e74c3c;
    color: white;
}

.cookie-overlay .btn-decline:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.cookie-overlay .btn-settings {
    background: transparent;
    color: var(--hvd-lime-green);
    border: 2px solid var(--hvd-lime-green);
}

.cookie-overlay .btn-settings:hover {
    background: var(--hvd-lime-green);
    color: var(--hvd-dark-green);
    transform: translateY(-2px);
}

/* Cookie Form Notice */
.cookie-form-notice {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    border-left: 4px solid #d68910;
}

.cookie-form-notice .notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-form-notice .notice-content i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    color: #fff;
}

.cookie-form-notice .notice-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.cookie-form-notice .notice-text p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-form-notice .btn-primary {
    background: white;
    color: #f39c12;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-form-notice .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cookie Modal Overlay - Vollständige Einstellungen */
.cookie-modal-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem;
}

.cookie-modal-overlay .modal-content {
    padding: 0;
}

.cookie-modal-overlay .modal-header {
    background: var(--hvd-dark-teal);
    color: var(--hvd-white);
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.cookie-modal-overlay .modal-header h2 {
    color: var(--hvd-lime-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-modal-overlay .modal-header h2 i {
    font-size: 2rem;
}

.cookie-modal-overlay .modal-body {
    padding: 2rem;
    background: var(--hvd-white);
}

.cookie-modal-overlay .modal-footer {
    background: var(--hvd-light-gray);
    padding: 1.5rem 2rem;
    border-radius: 0 0 12px 12px;
    text-align: center;
    border-top: 1px solid #e1e8ed;
}

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

.cookie-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-right: 1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.cookie-buttons .btn {
    font-size: 1rem;
    padding: 12px 24px;
    background-color: var(--hvd-lime-green);
    color: var(--hvd-dark-teal);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 120px;
}

.cookie-buttons .btn:hover {
    background-color: #a0d000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 192, 0, 0.3);
}

.cookie-buttons .btn:active {
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--hvd-dark-gray);
}

.close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e1e8ed;
    text-align: right;
}

/* Cookie Settings */
.cookie-setting {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 5px;
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--hvd-lime-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--hvd-lime-green);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--hvd-white);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section p {
    color: var(--hvd-white);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--hvd-white);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.setting-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--hvd-dark-teal);
    font-weight: 600;
    font-size: 1.1rem;
}

.setting-description {
    color: var(--hvd-dark-teal);
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Enhanced Cookie Settings Modal */
.cookie-categories {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--hvd-lime-green);
}

.cookie-categories h3 {
    color: var(--hvd-lime-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-intro {
    color: var(--hvd-dark-teal);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.cookie-setting {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.cookie-setting.required {
    border-color: var(--hvd-lime-green);
    background: rgba(128, 192, 0, 0.2);
}

.setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status.required {
    background: var(--hvd-lime-green);
    color: var(--hvd-dark-teal);
}

.cookie-status:not(.required) {
    background: var(--hvd-dark-teal);
    color: var(--hvd-white);
}

.cookie-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    border-left: 3px solid var(--hvd-lime-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-details strong {
    color: var(--hvd-dark-teal);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-details ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--hvd-dark-teal);
}

.cookie-details li {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Cookie-actions entfernt - nur individuelle Einstellungen verfügbar */

/* Modal-Button-Styles entfernt - nur individuelle Einstellungen verfügbar */

/* Mobile Cookie Modal Verbesserungen */
@media (max-width: 768px) {
    .cookie-setting {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .setting-label {
        font-size: 1rem;
    }
    
    .setting-description {
        font-size: 0.9rem;
        margin-left: 1.5rem;
    }
    
    .cookie-details {
        padding: 0.75rem;
    }
    
    .cookie-details li {
        font-size: 0.9rem;
    }
    
    .cookie-settings-icon {
        right: 60px;
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .cookie-settings-icon i {
        font-size: 1rem;
    }
    
    /* Mobile Cookie Overlay Fixes */
    .cookie-overlay {
        padding: 0.5rem;
    }
    
    .cookie-overlay .cookie-banner {
        margin: 0.5rem;
        max-height: 85vh;
    }
    
    .cookie-overlay .cookie-content {
        gap: 1rem;
        padding: 1rem;
    }
    
    .cookie-overlay .cookie-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-overlay .cookie-text p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cookie-overlay .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-overlay .cookie-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
}

.setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.setting-header h4 {
    margin: 0;
    color: var(--hvd-dark-gray);
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--hvd-dark-teal);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Optimierung - FORCE VISIBLE */
    .header {
        padding: 0.125rem 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 80px !important;
        width: 100% !important;
        margin: 0 !important;
        transform: none !important;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
        min-height: 80px;
    }
    
    .nav-logo {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .logo-image {
        width: 160px;
        height: 160px;
        margin: 0 !important;
    }
    
    .navbar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 51, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: rgba(0, 51, 51, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        z-index: 1000;
        border-radius: 0;
    }
    
    .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        color: white !important;
    }
    
    .nav-link:hover {
        background: rgba(128, 192, 0, 0.2);
        transform: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        margin-left: -1rem;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--hvd-dark-teal);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Scrolled Header Mobile */
    .header.scrolled {
        padding: 0.0625rem 0;
    }
    
    .header.scrolled .logo-image {
        width: 140px;
        height: 140px;
        margin: 0 !important;
    }
    
    .header.scrolled .nav-container {
        padding: 0.0625rem 1rem;
        min-height: 70px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 8px 0;
        padding: 12px 24px;
    }
    
    .hero {
        min-height: 60vh;
        border-radius: 0;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }

    .hero-images {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-images {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 2rem 1rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        text-align: center;
    }
    
    .hero-image-container h3 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .hero-image-container p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Content Sections Mobile */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .intro-content .intro-text {
        order: 1;
    }
    
    .intro-content .intro-button {
        order: 2;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .content-grid .content-image {
        order: 2;
    }
    
    .content-grid .content-text {
        order: 1;
    }

    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-grid.reverse .content-image {
        order: 2 !important;
    }
    
    .content-grid.reverse .content-text {
        order: 1 !important;
    }
    
    /* Stick & NAHT Content Mobile */
    .stick-naht-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .stick-naht-content .stick-naht-text {
        order: 1;
    }
    
    .stick-naht-content .contact-button-container {
        order: 2;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .content-text {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-text h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .content-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll-triggered animations */
.content-section:nth-child(odd) .content-image {
    animation: slideInLeft 0.8s ease-out;
}

.content-section:nth-child(even) .content-image {
    animation: slideInRight 0.8s ease-out;
}

.content-section:nth-child(odd) .content-text {
    animation: slideInRight 0.8s ease-out;
}

.content-section:nth-child(even) .content-text {
    animation: slideInLeft 0.8s ease-out;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-control.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.success-message {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 51, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 192, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hvd-dark-gray);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--hvd-medium-gray);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    color: var(--hvd-lime-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: var(--hvd-dark-gray);
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--hvd-dark-teal) 0%, #004d4d 100%);
    color: var(--hvd-white);
    padding: 2rem 0;
    margin-top: 0;
    border-top: 2px solid var(--hvd-lime-green);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--hvd-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--hvd-lime-green);
    transform: translateY(-2px);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

@media (max-width: 768px) {
    /* Footer Mobile Optimierung */
    .footer {
        padding: 2rem 1rem;
        margin-top: 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-links a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container.large-form {
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--hvd-dark-gray);
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid rgba(0, 51, 51, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--hvd-lime-green);
    box-shadow: 0 0 0 3px rgba(128, 192, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.file-input {
    padding: 8px 12px;
    cursor: pointer;
}

.file-info {
    font-size: 0.85rem;
    color: var(--hvd-medium-gray);
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--hvd-dark-gray);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px !important;
    height: 24px !important;
    border: 2px solid rgba(0, 51, 51, 0.3);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--hvd-lime-green);
    border-color: var(--hvd-lime-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Zusätzliche spezifische Regeln für Checkbox */
.contact-form .checkbox-label .checkmark {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
}

.contact-form-container .checkbox-label .checkmark {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
}

.contact-form-button.large-button {
    padding: 20px 40px;
    font-size: 1.2rem;
    align-self: center;
    width: 100%;
}

.contact-form-button i {
    margin-right: 0.5rem;
}

/* Error and Success Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Table Styles */
@media (max-width: 1200px) {
    .price-table {
        font-size: 0.8rem;
        min-width: 1000px;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 6px;
    }
}

@media (max-width: 768px) {
    /* Price Table Mobile */
    .price-table-container {
        margin: 0 -1rem 3rem -1rem;
        border-radius: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table {
        font-size: 0.7rem;
        min-width: 600px;
        width: 100%;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 3px;
        white-space: nowrap;
    }
    
    .price-table th {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }
    
    .price-table td {
        font-size: 0.7rem;
    }
    
    /* Scroll indicator */
    .price-table-container::after {
        content: "← Scrollen Sie horizontal für mehr Details →";
        display: block;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.8rem;
        color: var(--hvd-medium-gray);
        background: rgba(0, 51, 51, 0.05);
        border-top: 1px solid rgba(0, 51, 51, 0.1);
    }
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, rgba(128, 192, 0, 0.1) 0%, rgba(128, 192, 0, 0.05) 100%);
    border: 2px solid var(--hvd-lime-green);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(128, 192, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--hvd-lime-green);
    animation: bounce 0.6s ease;
    flex-shrink: 0;
}

.success-text h3 {
    color: var(--hvd-dark-teal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--hvd-dark-teal) 0%, var(--hvd-lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text p {
    color: var(--hvd-medium-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.success-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hvd-dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.success-info i {
    color: var(--hvd-lime-green);
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content .contact-info {
        order: 1;
    }
    
    .contact-content .contact-form-container {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0;
    }
    
    .contact-form-container.large-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .form-control:focus {
        padding: 0.75rem;
    }
    
    .file-input {
        padding: 0.5rem;
    }
    
    .file-info {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-form-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-form-button.large-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .success-message {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .success-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .success-text h3 {
        font-size: 1.3rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
    
    .success-info {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    /* Header Extra Small */
    .header {
        padding: 0.25rem 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-image {
        width: 160px;
        height: 160px;
        margin: 0 !important;
    }
    
    .header.scrolled .logo-image {
        width: 140px;
        height: 140px;
        margin: 0 !important;
    }
    
    /* Hero Extra Small */
    .hero-section {
        padding: 1.5rem 0.5rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-image {
        max-width: 250px;
        height: 150px;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Content Extra Small */
    .content-grid,
    .intro-content,
    .stick-naht-content {
        padding: 1.5rem 0.5rem;
    }
    
    .stick-naht-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stick-naht-content .stick-naht-text {
        order: 1;
    }
    
    .stick-naht-content .contact-button-container {
        order: 2;
    }
    
    /* Content Grid Reverse Extra Small */
    .content-grid.reverse .content-image {
        order: 2;
    }
    
    .content-grid.reverse .content-text {
        order: 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-text {
        padding: 1rem;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
    
    /* Contact Extra Small */
    .contact-section {
        padding: 1.5rem 0.5rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.6rem;
        font-size: 16px;
    }
    
    .contact-form-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 1.5rem 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
}

/* EMERGENCY HEADER FIX - Überschreibt alle anderen Regeln */
@media (max-width: 768px) {
    header.header,
    .header,
    header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 99999 !important;
        background: white !important;
        height: auto !important;
        min-height: 90px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.25rem 0 !important;
        border-bottom: 2px solid #80c000 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    /* FORCE REDUCE PADDING - Überschreibt alle anderen Regeln */
    .header,
    header.header,
    header {
        padding: 0.125rem 0 !important;
        min-height: 80px !important;
    }
    
    .nav-container {
        min-height: 80px !important;
        padding: 0.125rem 1rem !important;
    }
    
    .header.scrolled {
        padding: 0.0625rem 0 !important;
    }
    
    .header.scrolled .nav-container {
        min-height: 70px !important;
        padding: 0.0625rem 1rem !important;
    }
    
    .nav-container {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1rem !important;
        min-height: 90px !important;
    }
    
    .logo-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 160px !important;
        height: 160px !important;
        margin: 0 !important;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: -1rem !important;
    }
    
    .hamburger span {
        background: var(--hvd-dark-teal) !important;
    }
    
    .navbar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu {
        display: none !important; /* Versteckt auf mobilen Geräten, wird durch Hamburger gezeigt */
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 1rem !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(0, 51, 51, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
        z-index: 1000 !important;
        border-radius: 0 !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
        text-decoration: none !important;
        padding: 0.75rem 1rem !important;
        font-weight: 500 !important;
        text-align: center !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        margin: 0.25rem 0 !important;
    }
    
    .nav-link:hover {
        background: rgba(128, 192, 0, 0.2) !important;
        color: white !important;
    }
}

/* ULTIMATE HEADER PADDING FIX - Überschreibt ALLE anderen Regeln */
@media (max-width: 768px) {
    .header,
    header.header,
    header,
    .header.scrolled {
        padding: 0.125rem 0 !important;
        min-height: 80px !important;
    }
    
    .nav-container,
    .header.scrolled .nav-container {
        min-height: 80px !important;
        padding: 0.125rem 1rem !important;
    }
    
    .header.scrolled {
        padding: 0.0625rem 0 !important;
    }
    
    .header.scrolled .nav-container {
        min-height: 70px !important;
        padding: 0.0625rem 1rem !important;
    }
}

/* ULTIMATE MOBILE CONTENT GRID FIX - Überschreibt ALLE anderen Regeln */
@media (max-width: 768px) {
    .content-grid.reverse .content-image {
        order: 2 !important;
    }
    
    .content-grid.reverse .content-text {
        order: 1 !important;
    }
    
    .content-grid .content-image {
        order: 2 !important;
    }
    
    .content-grid .content-text {
        order: 1 !important;
    }
}

/* EMERGENCY MOBILE LAYOUT FIX - Höchste Priorität */
@media screen and (max-width: 768px) {
    .main-content .content-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .main-content .content-grid .content-text {
        order: 1 !important;
        width: 100% !important;
    }
    
    .main-content .content-grid .content-image {
        order: 2 !important;
        width: 100% !important;
    }
    
    .main-content .content-grid.reverse {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .main-content .content-grid.reverse .content-text {
        order: 1 !important;
        width: 100% !important;
    }
    
    .main-content .content-grid.reverse .content-image {
        order: 2 !important;
        width: 100% !important;
    }
}