/* Farbpalette */
:root {
    --primary-dark: #2C3E50; /* Dunkles Schiefergrau */
    --accent-green: #4CAF50; /* Moosgrün */
    --accent-gold: #B5A642; /* Gedämpftes Gold */
    --neutral-light: #ECF0F1; /* Helles Aschgrau */
    --white: #FFFFFF;
}

/* Allgemeine Stile & Responsive Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--neutral-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Mindesthöhe für alle Seiten, damit Footer unten bleibt */
}

.container {
    max-width: 1200px; /* Maximale Breite des Hauptinhalts */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    max-width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative; /* Wichtig für das Dropdown-Menü */
}

.main-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    padding: 5px 0; /* Für den Klickbereich */
    display: block; /* Für den Klickbereich */
}

.main-nav ul li a:hover {
    color: var(--accent-green);
}

/* Dropdown (Submenu) Styles */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%; /* Unter dem Parent-Link positionieren */
    left: 0;
    background-color: var(--primary-dark); /* Hintergrund wie Header */
    min-width: 220px; /* Mindestbreite für die Links */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001; /* Über dem Header-Z-Index */
    opacity: 0; /* Standardmäßig unsichtbar */
    visibility: hidden; /* Standardmäßig nicht interaktiv */
    transform: translateY(10px); /* Leichte Animation beim Einblenden */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-top: 3px solid var(--accent-green); /* Grüner Akzentstreifen oben */
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu { /* .open für JS-gesteuertes Verhalten bei Touch/Klick falls später benötigt */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0; /* Reset margin für Submenu-Items */
}

.submenu li a {
    padding: 12px 20px; /* Padding für Submenu-Links */
    color: var(--white);
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Leichter Hover-Effekt */
    color: var(--accent-green);
}

/* Mobile Navigation (Hamburger Icon) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: var(--white);
}

/* Hero Sektion - Zweispaltig, Fullscreen (NUR FÜR INDEX.HTML) */
body.home .hero-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: calc(100vh - 80px); /* Sicherstellen, dass Hero-Sektion die volle sichtbare Höhe minus Header einnimmt */
    width: 100vw;
    background-color: var(--primary-dark);
    color: var(--white);
    /* overflow: hidden; /* Verhindert Scrollbalken innerhalb der Hero-Sektion - ENTFERNT */
    flex-grow: 1;
    margin-top: -80px; /* Kompensiert den Platz des sticky Headers */
}

body.home {
    /* overflow: hidden; /* Verhindert das Scrollen des gesamten Bodys auf der Startseite im Desktop-Modus - ENTFERNT */
    overflow-y: auto; /* Erlaubt vertikales Scrollen auf der Seite */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    min-height: auto;
}
body.home .footer {
    display: none; /* Footer ist auf der Startseite nicht sichtbar, da Fullscreen */
}

body.home .hero-left, body.home .hero-right {
    flex: 1;
    min-width: 450px;
    padding: 0 40px; /* Vertikales Padding 0, Horizontales Padding 40px */
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: flex-start; /* Inhalt links ausrichten */
}

body.home .hero-left {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.home .hero-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

body.home .hero-right {
    background-color: var(--neutral-light);
    color: var(--primary-dark);
    text-align: left;
}

body.home .hero-content {
    padding: 0; /* Entfernt das zusätzliche Padding von .hero-content */
    width: 100%; /* Der Inhalt soll die gesamte Breite der .hero-right Spalte nutzen (minus deren Padding) */
}

body.home .hero-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em; /* Original war 3.0em */
    margin-bottom: 60px; /* ERHÖHT: Abstand zur Überschrift und Bullet Points */
    line-height: 1.2;
    color: var(--primary-dark);
    white-space: normal; /* Erlaubt Umbruch */
    overflow: hidden; /* Text abschneiden, wenn er die 2 Zeilen überschreitet */
    text-overflow: clip; /* Kein Clipping */
    max-height: 2.4em; /* Korrekte Berechnung für 2 Zeilen bei line-height 1.2 ist 2 * 1.2 = 2.4em */
}

/* Styles for the new bullet points on the homepage hero section */
.hero-content .intro-questions {
    list-style: none; /* Removes default bullet points */
    padding: 0;
    margin-bottom: 60px; /* ERHÖHT: Abstand zwischen Bullet Points und Lösungssatz */
    width: 100%; /* Volle Breite nutzen */
    color: var(--primary-dark); /* Color for the questions */
}

.hero-content .intro-questions li {
    position: relative;
    padding-left: 25px; /* Space for custom bullet point */
    margin-bottom: 10px; /* Space between bullet points */
    font-size: 1.1em; /* Match paragraph font size */
    text-align: left; /* Ensure text aligns left */
    white-space: nowrap; /* Verhindert Zeilenumbruch innerhalb des li */
    overflow: hidden; /* Text abschneiden, wenn er nicht in eine Zeile passt */
    text-overflow: ellipsis; /* '...' anzeigen, wenn Text abgeschnitten wird */
}

.hero-content .intro-questions li::before {
    content: '→'; /* Custom arrow bullet point */
    color: var(--accent-green); /* Green color for the arrow */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Bestehende Regel für Service Card H3 (zentriert) - belassen, da schon vorhanden */
.service-card h3 {
    text-align: center;
}

@media (max-width: 1050px) {
    body.home .hero-content h1 {
        font-size: 2.3em; /* Leichte Anpassung für kleinere Bildschirme */
    }
}
@media (max-width: 900px) {
    body.home .hero-content h1 {
        font-size: 2.1em; /* Weitere Reduzierung für kleinere Bildschirme */
    }
}

body.home .hero-content p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--primary-dark);
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

/* Inhaltsbereiche (Standard für Unterseiten) */
.section {
    padding: 80px 0;
    text-align: center; /* Dieser hier zentriert den gesamten Block */
    flex-grow: 1;
}

.section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

/* Anpassung für H1 in der Hero-Sektion von Unterseiten (z.B. M&A Beratung) */
.hero-section h1 {
    font-family: 'Merriweather', serif; /* Sicherstellen, dass die Schriftart konsistent ist */
    text-align: left; /* Überschrift linksbündig ausrichten */
    max-width: 900px; /* An die Breite des Einleitungstextes anpassen */
    margin: 0 auto 20px auto; /* Zentrieren und Abstand zum Text darunter */
    color: var(--primary-dark); /* Sicherstellen der richtigen Farbe */
    font-size: 2.8em; /* Etwas kleiner als Hero-H1 auf der Startseite, aber prominent */
}


/* Standardabsätze auf Unterseiten (schmalere Breite) */
.section p {
    font-size: 1.1em;
    max-width: 800px; /* Standard: Behält die 800px Breite bei */
    margin: 0 auto 20px auto; /* Zentriert den Textblock */
    text-align: left; /* Text selbst linksbündig innerhalb des Blocks */
}

/* Anpassung für den Einleitungstext unter H1 auf generischen Sektionen (z.B. M&A Seite) */
.section-intro-text {
    max-width: 900px; /* Breite etwas erhöhen, damit es zum h1 passt */
    margin: 0 auto 40px auto; /* Zentrieren und Abstand nach unten */
    font-size: 1.2em; /* Etwas größer machen */
    line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit bei Umbruch */
    color: var(--primary-dark); /* Passende Farbe */
    text-align: left; /* Text linksbündig, da der Container zentriert ist */
}


/* SPEZIFISCHE ANPASSUNG FÜR DIE "ÜBER UNS"-SEITE */
body.about .section p {
    max-width: 100%; /* Hier wird der Text verbreitert */
    /* Optimierung für Zeilenumbrüche (Hurenkinder/Schusterjungen) nur hier */
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    word-break: break-word;
    orphans: 3;
    widows: 3;
}

/* Neue Sektion: Unsere Schwerpunkte */
.our-focus-areas {
    background-color: var(--neutral-light);
    padding: 80px 0;
    text-align: center;
}

.our-focus-areas h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.focus-area-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.focus-area-item h3 {
    font-family: 'Merriweather', serif;
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 1.8em;
    display: flex; /* For icon alignment */
    align-items: center; /* For icon alignment */
}

/* Platzhalter für Icons, falls Sie keine Icon-Bibliothek nutzen */
.icon-ma::before,
.icon-ki::before,
.icon-supply-chain::before,
.icon-nearshoring::before {
    display: inline-block;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    background-color: var(--white);
    color: var(--accent-green);
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
    font-family: sans-serif; /* Fallback font for symbols */
}

/* Specific content for each icon */
.icon-ma::before { content: '🤝'; } /* Example symbol for M&A */
.icon-ki::before { content: '🤖'; } /* Example symbol for AI */
.icon-supply-chain::before { content: '🔗'; } /* Example symbol for Supply Chain */
.icon-nearshoring::before { content: '✈️'; } /* Example symbol for Nearshoring */


.focus-area-item p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch; /* WICHTIG: Sorgt dafür, dass alle Grid-Items (die Service-Cards) die gleiche Höhe haben */
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center; /* Beibehalten für H3-Zentrierung und P-Inhalt */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* NEU: Flexbox für gleichen Button-Abstand */
    display: flex; /* Macht die Service-Card zu einem Flex-Container */
    flex-direction: column; /* Ordnet die Inhalte (h3, p, a) untereinander an */
    justify-content: space-between; /* Verteilt den verfügbaren Platz: Oben der Text, unten der Button */
    height: 100%; /* WICHTIG: Stellt sicher, dass alle Service-Cards die gleiche Höhe haben */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-family: 'Merriweather', serif;
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 1.8em;
    text-align: center; /* Bestätigt die Zentrierung der H3 in Service Cards */
}

.service-card p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Lässt den Absatz den verfügbaren Platz einnehmen, schiebt den Button nach unten */
}

.service-card .btn-secondary {
    display: inline-block;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--accent-green);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;

    /* NEU: Für gleichen Button-Abstand */
    margin-top: auto; /* Schiebt den Button an den unteren Rand im Flex-Container */
    margin-bottom: 0; /* Stellt sicher, dass kein unerwünschter unterer Margin den Abstand vergrößert */
}

.service-card .btn-secondary:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

/* Stile für die Content-Sektion der M&A-Seite (und ähnlicher Unterseiten) */
.content-section {
    padding: 60px 0;
    background-color: var(--white); /* Weißer Hintergrund für den Hauptinhalt */
}

.content-section h2 {
    font-size: 2.2em; /* Etwas kleiner als die globale H2, aber immer noch prominent */
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center; /* Spezifische H2 in der Content-Sektion zentrieren */
}

.content-section h3 {
    font-size: 1.6em;
    color: var(--primary-dark); /* Dunkler als accent-green für H3 */
    margin-top: 40px;
    margin-bottom: 15px;
    /* Für Links-Bündigkeit im content-section-Kontext */
    max-width: 900px; /* An die Breite der Absätze und Listen anpassen */
    margin-left: auto; /* Zentrieren des Blocks */
    margin-right: auto; /* Zentrieren des Blocks */
    text-align: left; /* Text innerhalb des Blocks linksbündig */
}

.content-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px; /* Etwas breiter als die Standard .section p für längere Texte */
    margin-left: auto; /* Zentrieren des Blocks */
    margin-right: auto; /* Zentrieren des Blocks */
    text-align: left; /* Text linksbündig */
}

.feature-block {
    margin-bottom: 40px; /* Abstand zwischen den Feature-Blöcken */
}

.feature-block ul {
    list-style: none; /* Standard-Bullet-Points entfernen */
    padding: 0;
    max-width: 900px; /* Breite der Listen begrenzen */
    margin: 0 auto 30px auto; /* Zentrieren und Abstand */
}

.feature-block ul li {
    position: relative;
    padding-left: 30px; /* Platz für den Haken */
    margin-bottom: 12px; /* Abstand zwischen Listenelementen */
    line-height: 1.5;
    text-align: left; /* Text innerhalb des Listenelements linksbündig */
    font-size: 1.1em;
}

.feature-block ul li::before {
    content: '✓'; /* Grüner Haken als Bullet Point */
    color: var(--accent-green);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em; /* Größe des Hakens anpassen */
}

/* Stil für den Block der Alleinstellungsmerkmale */
.distinguishing-feature {
    background-color: var(--neutral-light); /* Helles Aschgrau als Hintergrund */
    padding: 30px;
    border-left: 5px solid var(--accent-green); /* Grüner Streifen links */
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 5px;
    max-width: 900px; /* An die Breite des .content-section p anpassen */
    margin-left: auto; /* Zentrieren */
    margin-right: auto; /* Zentrieren */
    text-align: left; /* Text linksbündig im Block */
}

.distinguishing-feature h2 {
    text-align: left; /* Überschrift links ausrichten, da der Block einen Streifen hat */
    margin-bottom: 20px;
    color: var(--primary-dark); /* Passende Farbe */
}
.distinguishing-feature p {
    max-width: 100%; /* Innerhalb dieses Blocks die volle Breite nutzen */
}
.distinguishing-feature ul li {
    font-weight: bold; /* Keywords hervorheben */
}


/* Alleinstellungsmerkmal / Why Us Sektion */
.usp-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.usp-section h2 {
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.usp-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.usp-list li {
    background-color: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: left;
    flex: 1 1 calc(50% - 20px);
    max-width: 450px;
}

/* Call to Action Sektion */
.cta-section {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.2em;
}

/* Footer (Standard auf allen Seiten) */
.footer {
    background-color: var(--primary-dark);
    color: var(--neutral-light);
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
    font-size: 0.9em;
}

.footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer nav ul li {
    margin: 0 15px;
}

.footer nav ul li a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer nav ul li a:hover {
    color: var(--accent-green);
}

/* ============================== */
/* Responsive Anpassungen */
/* ============================== */

/* Tablets und kleinere Desktops (bis 992px) */
@media (max-width: 992px) {
    body.home .hero-content h1 {
        font-size: 2.3em; /* Leichte Anpassung für kleinere Bildschirme */
    }
    body.home .hero-content p {
        font-size: 1.2em;
    }
    .section h2 {
        font-size: 2em;
    }
    /* Standard .section p bleibt 800px max-width, außer auf about.html */
    body.about .section p { /* Auch auf Tablets soll der Text auf Über uns breiter sein */
        max-width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .usp-list li {
        flex: 1 1 calc(100% - 20px);
        max-width: 100%;
    }

    /* Anpassung für Content-Sektion h2 auf Tablets */
    .content-section h2 {
        font-size: 1.8em;
    }
    /* Anpassung für Content-Sektion h3 auf Tablets */
    .content-section h3 {
        font-size: 1.4em;
    }
    /* Anpassung für Listen in Content-Sektion auf Tablets */
    .feature-block ul {
        margin: 0 auto 20px auto;
    }
    .feature-block ul li {
        font-size: 1em;
    }
    /* Anpassung für Hero-Sektion H1 auf Tablets */
    .hero-section h1 {
        font-size: 2.2em; /* Anpassung für kleinere Bildschirme */
    }
    .section-intro-text {
        font-size: 1.1em;
    }

    /* Responsive Anpassungen für .our-focus-areas */
    .our-focus-areas h2 {
        font-size: 2em; /* Smaller heading on tablets */
    }
    .focus-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust minmax for tablet layout */
    }
}

/* Mobile Geräte (bis 768px) */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    .logo img {
        height: 50px;
    }
    .main-nav {
        display: none; /* Versteckt die Hauptnavigation auf Mobilgeräten */
    }
    .hamburger {
        display: block; /* Zeigt das Hamburger-Icon */
    }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; /* Unterhalb des Headers */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-dark);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 999;
        padding-top: 20px;
        overflow-y: auto;
    }
    .main-nav.active ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .main-nav.active ul li {
        margin: 15px 0;
        text-align: center;
    }
    /* Mobile: Submenu im Hamburger-Menü einblenden und korrekt ausrichten */
    .main-nav.active .submenu {
        position: static; /* Positionierung zurücksetzen */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background-color: rgba(0,0,0,0.2); /* Etwas hellerer Hintergrund im mobil-Menü */
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-bottom: 10px;
    }
    .main-nav.active .submenu li a {
        padding: 10px 20px; /* Anpassung des Paddings */
    }
    .main-nav.active .has-submenu > a { /* Der Haupt-Services-Link sollte auch als Klickpunkt funktionieren */
        margin-bottom: 5px; /* Abstand zum Submenu */
    }

    /* HIER SIND DIE WESENTLICHEN ÄNDERUNGEN FÜR DIE INDEX-SEITE AUF MOBILGERÄTEN */
    body.home {
        overflow: auto; /* **WICHTIG:** Erlaubt wieder das Scrollen des Bodys */
        min-height: auto; /* Setzt die Mindesthöhe zurück */
    }
    body.home .hero-section {
        flex-direction: column;
        height: auto; /* **WICHTIG:** Die Höhe wird dynamisch an den Inhalt angepasst */
        padding-top: 70px; /* Platz für den Header */
        margin-top: 0; /* Header-Offset ist durch padding-top ausgeglichen */
    }
    body.home .hero-left, body.home .hero-right {
        padding: 20px; /* Einheitliches Padding für mobile Ansicht */
        min-width: unset;
        flex: none;
        width: 100%;
    }
    body.home .hero-left {
        height: auto; /* Bildhöhe wird dynamisch */
        min-height: 300px; /* Mindesthöhe für das Bild */
        overflow: hidden;
    }
    body.home .hero-left img {
        height: auto; /* Bildhöhe anpassen */
        width: 100%;
        object-fit: contain; /* oder cover, je nachdem, wie das Bild skalieren soll */
    }
    body.home .hero-right {
        text-align: center; /* Auf Mobilgeräten wird der Text in der Hero-Sektion zentriert */
        height: auto; /* Höhe des Textbereichs dynamisch */
        justify-content: flex-start;
        padding-top: 40px;
    }
    body.home .hero-content {
        max-width: 100%;
        margin-left: auto; /* Hier wieder zentrieren, wenn hero-right text-align: center ist */
        margin-right: auto;
    }
    body.home .hero-content h1 {
        font-size: 2em;
        text-align: center; /* Überschrift auch zentrieren */
        /* GEÄNDERT: max-height angepasst, um 2 Zeilen für mobile zu erlauben */
        max-height: 2.4em; /* Bei line-height 1.2 und 2em font-size sollte 2.4em passen */
        /* white-space: normal; overflow: hidden; text-overflow: clip; sind schon global gesetzt */
    }
    body.home .hero-content .intro-questions,
    body.home .hero-content p,
    body.home .btn-primary {
        margin-left: auto; /* Bulletpoints, Absätze und Buttons auch zentrieren */
        margin-right: auto;
        text-align: center; /* Text der Bulletpoints und Absätze zentrieren */
    }
    body.home .hero-content .intro-questions li {
        text-align: left; /* GEÄNDERT: Bulletpoint Text soll linksbündig bleiben, damit der Pfeil sichtbar ist */
        white-space: normal; /* Zeilenumbruch auf Mobilgeräten erlauben */
        overflow: visible; /* Sicherstellen, dass der Text sichtbar ist */
        text-overflow: clip; /* Kein Ellipsis auf Mobilgeräten */
        padding-left: 25px; /* Platz für den Haken */
        position: relative; /* Für die Positionierung des Pfeils */
    }
    body.home .hero-content .intro-questions li::before {
        left: 0; /* GEÄNDERT: Pfeil wieder ganz links am Listenpunkt */
        transform: none; /* Transformation zurücksetzen */
        top: 0;
    }

    body.home .footer {
        display: block; /* Footer auf der Startseite auf Mobilgeräten wieder anzeigen */
    }


    .section {
        padding: 50px 0;
    }
    /* Auf Mobilgeräten sollen alle .section p 100% Breite nutzen, einschließlich "Über uns" */
    .section p {
        max-width: 100%; /* Auf Mobilgeräten wird immer die volle Breite genutzt */
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer nav ul {
        flex-direction: column;
        gap: 10px;
    }

    /* Anpassung für Content-Sektion h2 auf Mobilgeräten */
    .content-section h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    /* Anpassung für Content-Sektion h3 auf Mobilgeräten */
    .content-section h3 {
        font-size: 1.2em;
        margin-top: 30px;
    }
    /* Anpassung für Listen in Content-Sektion auf Mobilgeräten */
    .feature-block ul li {
        font-size: 0.95em;
        padding-left: 25px;
    }
    /* Anpassung für Hero-Sektion H1 auf Mobilgeräten (generisch, nicht body.home) */
    .hero-section h1 {
        font-size: 1.8em; /* Noch kleiner auf kleinen Bildschirmen */
        text-align: center; /* Hier wieder zentrieren für bessere Optik */
        max-width: 100%;
    }
    .section-intro-text {
        text-align: center; /* Hier auch zentrieren */
        max-width: 100%;
    }

    /* Responsive Anpassungen für .our-focus-areas */
    .our-focus-areas h2 {
        font-size: 1.8em; /* Smaller heading on mobile */
    }
    .focus-areas-grid {
        grid-template-columns: 1fr; /* Single column layout on mobile */
    }
}