/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors (CI) - Optimiert für bessere Kontraste */
    --ci-greige: #D5CDC3;       /* Greige */
    --ci-dusty-green: #DDEBD3;  /* Dusty Green */
    --ci-light-mauve: #C9B1D3;  /* Light Mauve */
    --ci-icy-blue: #DEEBF7;     /* Icy Blue */

    /* Derived Palette & Tokens - Verbesserte Kontraste */
    --primary-color: #0066CC;      /* Dunkleres Blau für besseren Kontrast */
    --primary-hover: #0052A3;      /* Hover-State */
    --primary-contrast: #FFFFFF;   /* Weißer Text auf Primary */
    --secondary-color: #7C3AED;    /* Kräftigeres Lila */
    --surface-bg: #FFFFFF;         /* Standard-Hintergrund */
    --surface-muted: #F9FAFB;      /* Leicht getönt für Sektionen */
    --section-alt: #F3F4F6;        /* Alternierende Sektionen */
    --section-greige: var(--ci-greige);

    --dark-color: #0F172A;         /* Sehr dunkles Blau-Grau */
    --text-color: #1E293B;         /* Haupttext - dunkler für besseren Kontrast */
    --text-light: #334155;         /* Etwas hellerer Text */
    --muted-text: #64748B;         /* Sekundärer Text */
    --light-color: #F8FAFC;
    --gray-color: #6B7280;
    --border-color: #E2E8F0;       /* Weichere Borders */
    --success-color: #059669;
    --warning-color: #D97706;
    --danger-color: #DC2626;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12), 0 6px 10px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.2s ease;
}

/* Typography: Inter (Body), Source Serif Pro (Headings) */
@supports (font-variation-settings: normal) {
  :root { --font-optical-sizing: auto; }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 19px; /* Größer für bessere Lesbarkeit */
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--surface-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    font-weight: 400;
}

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

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* Typography - Optimiert für Lesbarkeit */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}
h3 { 
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
h4 { 
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-top: 2rem;
}

p {
    margin-bottom: 1.75rem;
    color: var(--text-light);
    font-weight: 400;
}

p.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 450;
    letter-spacing: -0.01em;
}

.section p {
    max-width: 75ch;
}

/* Better list styling */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--primary-hover);
    text-decoration-thickness: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #0B5AAA;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.cookie-essential {
    background: var(--gray-color);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: saturate(180%) blur(8px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
}

.dropdown-menu a:hover {
    background: var(--light-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--primary-contrast) !important;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #C9D9EA;
    box-shadow: 0 8px 24px rgba(14, 63, 152, 0.12);
}

.cta-button:hover {
    background: #D7E6F6; /* etwas dunkleres Icy Blue */
    color: var(--primary-contrast) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--ci-icy-blue) 0%, #F7FBFF 100%);
    padding: 80px 0 56px;
}
.hero h1 { font-family: 'Source Serif Pro', Georgia, 'Times New Roman', serif; font-size: 3rem; }
.hero .hero-subtitle { color: var(--muted-text); max-width: 800px; }
.hero .hero-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Generic Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--section-alt); }
.section.greige { background: var(--section-greige); }
.section.muted { background: var(--surface-muted); }

/* Cards */
.card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #FFFFFF;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #A3BFE2;
    box-shadow: 0 0 0 3px rgba(163,191,226,0.25);
}

button.primary {
    background: var(--primary-color);
    color: var(--primary-contrast);
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #C9D9EA;
    font-weight: 700;
}
button.primary:hover { background: #D7E6F6; }

/* Footer Styles */
.footer {
    background: #0F172A;
    color: #E2E8F0;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-visualization {
    position: relative;
    width: 300px;
    height: 300px;
}

.ai-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ai-node:nth-child(2) {
    bottom: 0;
    left: 0;
    animation-delay: 0.5s;
}

.ai-node:nth-child(3) {
    bottom: 0;
    right: 0;
    animation-delay: 1s;
}

.ai-connections {
    position: absolute;
    inset: 20%;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

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

/* Trust Indicators */
.trust-indicators {
    background: var(--surface-muted);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* ROI Section */
.roi-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.roi-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.roi-calculator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.roi-input {
    margin-bottom: 1.5rem;
}

.roi-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.roi-input input {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
}

.roi-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.roi-result {
    margin: 2rem 0;
}

.roi-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
}

/* New Sections Styling */
.section {
    padding: 4rem 0;
}

.section.muted {
    background-color: var(--surface-muted);
}

.intro-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--surface-bg), var(--surface-muted));
}

.branchen-section {
    background-color: var(--surface-bg);
    padding: 5rem 0;
}

.implementierung-section {
    padding: 5rem 0;
}

.vorteile-section {
    padding: 5rem 0;
}

.kosten-roi-section {
    background-color: var(--surface-bg);
    padding: 5rem 0;
}

.tools-section {
    padding: 5rem 0;
}

.kundenservice-section {
    background-color: var(--surface-bg);
    padding: 5rem 0;
}

.challenges-section {
    padding: 5rem 0;
}

.faq-section {
    background-color: var(--surface-bg);
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.branchen-content h3,
.content-wrapper h3 {
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--surface-muted);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Improve readability with better spacing */
.content-wrapper p + p {
    margin-top: 1.5rem;
}

.content-wrapper h3 + p {
    margin-top: 0.5rem;
}

/* Hero Subpage */
.hero-subpage {
    background: linear-gradient(135deg, var(--ci-icy-blue) 0%, var(--ci-light-mauve) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-subpage h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-subpage .hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Use cases and process steps */
.use-case-item,
.process-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.use-case-item:last-child,
.process-step:last-child {
    border-bottom: none;
}

.use-case-item h3,
.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content::before {
    content: "“";
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.2;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 0.25rem 0;
}

.footer-column a {
    color: var(--gray-color);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-graphic {
        height: 300px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .roi-amount {
        font-size: 2rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-graphic,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Additional Improvements for Better Readability and Contrast */
.intro-section p,
.branchen-content p,
.content-wrapper p {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #1E293B;
    margin-bottom: 1.75rem;
}

/* Improve headings contrast */
h1, h2, h3, h4, h5, h6 {
    color: #0F172A;
}

/* Better link styling in content */
.content-wrapper a,
.branchen-content a {
    color: #0052A3;
    font-weight: 500;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(0, 82, 163, 0.3);
}

.content-wrapper a:hover,
.branchen-content a:hover {
    color: #003D7A;
    text-decoration-color: #003D7A;
}

/* Improve button contrast */
.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.25rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Better CTA section contrast */
.cta-section {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
}

.cta-section h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

.btn-white {
    background: white;
    color: #0052A3;
    font-weight: 600;
    padding: 1rem 2.25rem;
    text-decoration: none !important;
}

.btn-white:hover {
    background: #F0F9FF;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2.25rem;
    text-decoration: none !important;
}

.btn-outline:hover {
    background: white;
    color: #0052A3;
}

/* Service card improvements */
.service-card p {
    color: #334155;
    line-height: 1.75;
    font-size: 1.05rem;
}

.service-features li {
    color: #1E293B;
    font-size: 1rem;
    line-height: 1.8;
}

/* Navigation contrast improvements */
.nav-brand a {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0F172A;
    text-decoration: none;
}

.nav-menu li a {
    color: #1E293B;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

/* Hero improvements */
.hero-features .feature-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
}

.hero-features .feature-icon {
    color: var(--primary-color);
}

/* Dropdown improvements */
.dropdown-menu {
    background: white;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-menu li a {
    padding: 0.75rem 1.25rem;
    color: #1E293B;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: #F1F5F9;
    color: var(--primary-color);
}

/* Footer text improvements */
.footer-column p,
.footer-column li a {
    color: #CBD5E1;
    line-height: 1.8;
}

.footer-bottom {
    color: #94A3B8;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 3px solid #0066CC;
    outline-offset: 2px;
    border-radius: 2px;
}
