body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
/* CSS-Variablen fÃ¼r konsistente Farben */
:root {
    --primary-blue: #095c7a;
    --secondary-blue: #0073af;
    --accent-blue: #0872ae;
    --gap-size: 10px;
    --row-spacing: 20px;
}

/* Grundlegendes Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Wrapper-Konfiguration fÃ¼r flexibles Layout */
.wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    position: relative;
}

/* Gemeinsame Eigenschaften fÃ¼r alle Grid-Elemente */
[class*="grid"] {
    padding: var(--gap-size);
    margin-bottom: var(--row-spacing);
}

/* Mobile First: Standard-Breiten fÃ¼r kleinste Bildschirme */
.grid1 { 
    width: 50%; 
    padding: 0 var(--gap-size); 
}

/* Ab grid2: Volle Breite auf Mobile fÃ¼r bessere Lesbarkeit */
.grid2, .grid3, .grid4, .grid5, .grid6,
.grid7, .grid8, .grid9, .grid10, .grid11, .grid12 {
    width: 100%;
    padding: 0 var(--gap-size);
}

/* GrÃ¶ÃŸere Smartphones (ab 481px) */
@media (min-width: 481px) {
    .grid1 { width: 25%; }
    .grid2 { width: 50%; }
    .grid3 { width: 50%; }
    .grid4 { width: 50%; }
    
    /* grid5-grid12 bleiben bei 100% fÃ¼r mobile Lesbarkeit */
    .grid5, .grid6, .grid7, .grid8, 
    .grid9, .grid10, .grid11, .grid12 {
        width: 100%;
    }
}

/* Tablets (ab 769px) */
@media (min-width: 769px) {
    .grid1 { width: 16.66%; }
    .grid2 { width: 25%; }
    .grid3 { width: 33.33%; }
    .grid4 { width: 50%; }
    .grid5 { width: 50%; }
    .grid6 { width: 50%; }
    
    /* GrÃ¶ÃŸere Grids bleiben gestapelt */
    .grid7, .grid8, .grid9, .grid10, .grid11, .grid12 {
        width: 100%;
    }
}

/* Desktop (ab 1025px) - Originalwerte */
@media (min-width: 1025px) {
    .grid1 { width: 8.33%; }
    .grid2 { width: 16.66%; }
    .grid3 { width: 24.2%; }
    .grid4 { width: 33.33%; }
    .grid5 { width: 41.66%; }
    .grid6 { width: 50%; }
    .grid7 { width: 58.33%; }
    .grid8 { width: 66.66%; }
    .grid9 { width: 75%; }
    .grid10 { width: 83.33%; }
    .grid11 { width: 91.66%; }
    .grid12 { width: 100%; }
}

/* GroÃŸe Bildschirme (ab 1201px) - Optimierungen */
@media (min-width: 1201px) {
    .wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Ãœberlappungsklassen - nur fÃ¼r grÃ¶ÃŸere Bildschirme */
.overlap-left {
    margin-left: -10%;
    position: relative;
    z-index: 1;
}

.overlap-right {
    margin-right: -10%;
    position: relative;
    z-index: 1;
}

/* Ãœberlappung auf kleinen GerÃ¤ten deaktivieren */
@media (max-width: 768px) {
    .overlap-left, .overlap-right {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Klassen fÃ¼r absolute Positionierung */
.pos-absolute {
    position: absolute;
}

/* Vordefinierte Positionierungen */
.pos-top-left {
    top: 0;
    left: 0;
}

.pos-top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pos-top-right {
    top: 0;
    right: 0;
}

.pos-center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos-center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.pos-bottom-left {
    bottom: 0;
    left: 0;
}

.pos-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pos-bottom-right {
    bottom: 0;
    right: 0;
}

/* Z-Index-Steuerung */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }

/* Optionale Klasse fÃ¼r Inhalte ohne AbstÃ¤nde */
.no-gap {
    padding: 0;
    margin: 0;
}

/* Hilfsklassen fÃ¼r AbstÃ¤nde */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }

.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }

/* Zeilen-Kontrolle */
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: var(--row-spacing);
}

/* Spezifische ZeilenhÃ¶hen */
.row-height-small {
    min-height: 100px;
}

.row-height-medium {
    min-height: 200px;
}

.row-height-large {
    min-height: 300px;
}

/* Vertikale Ausrichtung innerhalb einer Zeile */
.items-top {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-bottom {
    align-items: flex-end;
}

/* Horizontale Ausrichtung einer Zeile */
.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

/* Klasse fÃ¼r schwebende/fixierte Elemente */
.sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    z-index: 10;
}

.fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* Mobile: Sticky/Fixed werden zu normalen Elementen */
@media (max-width: 768px) {
    .sticky, .fixed {
        position: static;
        order: 999;
        width: 100%;
    }
    
    .wrapper {
        flex-direction: column;
    }
}
/* ============================================
   ZWEISTUFIGE NAVIGATION CSS
   ============================================ */

/* Grundlegendes Reset fÃ¼r Navigation */
.top-navigation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Container fÃ¼r responsive Inhalte */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   OBERE ZEILE: KONTAKTINFORMATIONEN (KOMPAKTER)
   ============================================ */

.contact-bar {
    background-color: #0072af;
    color: white;
    padding: 6px 0; /* Reduziert von 8px auf 6px */
    font-size: 13px; /* Reduziert von 14px auf 13px */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px; /* Reduziert von 30px auf 25px */
    flex-wrap: wrap;
}

/* ============================================
   KONTAKTINFORMATIONEN MIT ICONS
   ============================================ */

/* Basis-Styling fÃ¼r alle Contao-Textelemente in der Kontaktbar */
.contact-info .ce_text {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact-info .ce_text p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px; /* Reduziert von 8px auf 6px */
}

/* Name (ohne Icon) */
.contact-info .contact-name {
    font-weight: 600;
}

/* Icon-Klassen mit :before Pseudo-Element - KORRIGIERT */
.contact-telefon:before,
.contact-email:before,
.contact-kalender:before {
    content: "";
    display: inline-block;
    width: 14px; /* Reduziert von 16px auf 14px */
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1); /* Icons weiÃŸ machen */
    margin-right: 6px;
    flex-shrink: 0;
}

/* Telefon-Icon - KORRIGIERTER PFAD */
.contact-telefon:before {
    background-image: url('../../files/Allgemein/files/Allgemein/Icon/telefon.svg');
}

/* E-Mail-Icon - KORRIGIERTER PFAD */
.contact-email:before {
    background-image: url('../../files/Allgemein/files/Allgemein/Icon/eMail.svg');
}

/* Kalender-Icon - KORRIGIERTER PFAD */
.contact-kalender:before {
    background-image: url('../../files/Allgemein/files/Allgemein/Icon/calendar.svg');
}

/* Link-Styling fÃ¼r Kontaktinfos */
.contact-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* ============================================
   UNTERE ZEILE: LOGO + NAVIGATION (VEREINFACHT)
   ============================================ */

.main-navigation {
    background-color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #e0e0e0;
}

.nav-layout {
    display: flex;
    align-items: center; /* GeÃ¤ndert von flex-start zu center */
    gap: 30px;
    padding: 10px 0; /* Reduziert von 15px auf 10px */
}

/* Logo-Container */
.logo-container {
    flex-shrink: 0;
}

.logo-container .logo {
    height: 50px; /* Reduziert von 80px auf 50px */
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header-Content-Bereich (NUR NAVIGATION, KEIN HINTERGRUNDBILD) */
.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hintergrundbild komplett entfernt */
.header-background {
    display: none; /* Komplett ausgeblendet */
}

/* Navigation direkt unter dem Logo */
.navigation-container {
    margin-top: 0; /* Kein Abstand mehr */
}

/* Standard Contao Navigation Styling - VERBESSERT */
.navigation-container nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Reduziert von 30px auf 20px */
    flex-wrap: wrap;
    align-items: center;
}

.navigation-container nav ul li {
    margin: 0;
}

.navigation-container nav ul li a {
    display: block;
    padding: 6px 12px; /* Reduziert von 8px 15px */
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.navigation-container nav ul li a:hover,
.navigation-container nav ul li.active a,
.navigation-container nav ul li.trail a {
    background-color: #0072af;
    color: white;
}

/* ============================================
   SCROLL-EFFEKTE - OPTIMIERT
   ============================================ */

/* Stufe 1: Kontaktbar verstecken */
body.nav-contact-hidden .contact-bar {
    transform: translateY(-100%);
    opacity: 0;
}

/* Stufe 2: Kompakte Version */
body.nav-compact .contact-bar {
    display: none;
}

body.nav-compact .nav-layout {
    padding: 6px 0; /* Noch kompakter */
    align-items: center;
}

body.nav-compact .logo-container .logo {
    height: 35px; /* Noch kleiner im kompakten Modus */
}

body.nav-compact .navigation-container nav ul {
    gap: 15px; /* Engere Navigation */
}

body.nav-compact .navigation-container nav ul li a {
    padding: 4px 10px;
    font-size: 13px;
}

/* Stufe 3: Navigation komplett verstecken */
body.nav-hidden .top-navigation-container {
    transform: translateY(-100%);
    opacity: 0;
}

/* ============================================
   WRAPPER ANPASSUNG - KORRIGIERTE ABSTÃ„NDE
   ============================================ */

/* Standard: VollstÃ¤ndige Navigation sichtbar */
#wrapper {
    margin-top: 85px; /* KORRIGIERT: Kontaktbar (25px) + Navigation (60px) */
    transition: margin-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body-Klassen fÃ¼r verschiedene NavigationszustÃ¤nde */

/* Kontaktbar versteckt - nur Navigation sichtbar */
body.nav-contact-hidden #wrapper {
    margin-top: 60px; /* Nur Navigation */
}

/* Kompakte Navigation */
body.nav-compact #wrapper {
    margin-top: 47px; /* Kompakte Navigation */
}

/* Navigation komplett versteckt */
body.nav-hidden #wrapper {
    margin-top: 0;
}

/* ============================================
   TOP-BUTTON STYLING
   ============================================ */

.top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #0072af;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,123,175,0.3);
    z-index: 1000;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-button img {
    width: 20px;
    height: 20px;
    display: block;
}

.top-button:hover {
    background-color: #005a8b;
    transform: scale(0.9);
}

.top-button.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN - OPTIMIERT
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .contact-info {
        gap: 20px;
        font-size: 12px;
    }
    
    .nav-layout {
        gap: 20px;
    }
    
    .logo-container .logo {
        height: 45px;
    }
    
    .navigation-container nav ul {
        gap: 15px;
    }
}

/* Kleine Tablets */
@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
        font-size: 11px;
    }
    
    .nav-layout {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 8px 0;
    }
    
    .logo-container .logo {
        height: 40px;
    }
    
    .navigation-container nav ul {
        justify-content: center;
        gap: 12px;
    }
    
    .navigation-container nav ul li a {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    /* Mobile Wrapper-AbstÃ¤nde */
    #wrapper {
        margin-top: 95px;
    }
    
    body.nav-contact-hidden #wrapper {
        margin-top: 70px;
    }
    
    body.nav-compact #wrapper {
        margin-top: 55px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .contact-bar {
        padding: 8px 0;
    }
    
    .nav-layout {
        padding: 8px 0;
    }
    
    .logo-container .logo {
        height: 35px;
    }
    
    .navigation-container nav ul {
        flex-direction: column;
        gap: 3px;
        align-items: center;
    }
    
    .navigation-container nav ul li a {
        padding: 6px 15px;
        width: 180px;
        text-align: center;
    }
    
    /* Mobile Wrapper-AbstÃ¤nde angepasst */
    #wrapper {
        margin-top: 110px;
    }
    
    body.nav-contact-hidden #wrapper {
        margin-top: 85px;
    }
    
    body.nav-compact #wrapper {
        margin-top: 70px;
    }
}
/*styling fÃ¼r den nach oben Pfeil*/
.top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #92c2f400;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 1;
}

.top-button img {
    width: 20px;
    height: 20px;
    display: block;
}

.top-button:hover {
    background-color: #f4e09263;
}

.js-enabled .top-button {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-button.visible {
    opacity: 1;
}

@media print, (prefers-reduced-motion: reduce) {
    .top-button {
        opacity: 1 !important;
    }
}
/* Seite allgemein */
html {
    overflow-y: scroll;
    overflow-x: auto;
}

/* Grundlegendes Body-Layout */
body {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    background-color: #095c7a;
    font: 87.5% sans-serif, arial, Verdana, Helvetica;
    min-height: 960px;
    background-image: repeating-linear-gradient(#fff, #095c7a);
}

/* Hauptcontainer mit runden Ecken */
#wrapper {
    margin-right: 40px;
    margin-left: 40px;
    margin-top: 120px;
    vertical-align: middle;
    background-color: #fff;
    box-shadow: 6px 6px 6px 0 rgba(142, 142, 142, 0);
    border: 1px solid #000;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border-spacing: 5px;
}

/* Grid-Layout fÃ¼r Seitenbreite */
.wrapper-grid {
    width: calc(75% - (10px * 8));
    margin: 0 auto;
}

/* Abstand Inhaltscontainer zum Kopf */
#container {
    margin-top: 2em;
}

/* Grundlegende Schrift und AbstÃ¤nde der Hauptinhalte */
#main {
    font-size: 1em;
    line-height: 1.7;
    font-weight: normal;
    color: #444;
}

/* Abstand der Inhalte vom Rand */
#main .inside {
    margin-right: 1.5em;
    margin-left: 1.5em;
}

/* FuÃŸzeile */
#footer {
    margin-top: 1.5em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    border-top: 0 solid #d9d9d9;
    font-size: 12px;
    font-weight: normal;
    color: #444;
    transition: all 0.3s ease;
}

/* Responsive Anpassungen fÃ¼r kleinere Bildschirme */
@media (max-width: 768px) {
    #wrapper {
        margin-right: 20px;
        margin-left: 20px;
        margin-top: 80px;
    }
    
    #main .inside {
        margin-right: 1em;
        margin-left: 1em;
    }
}

/* ===================================
   CSS CUSTOM PROPERTIES (Variablen)
   =================================== */
:root {
    /* Farben */
    --primary-color: #095c7a;
    --secondary-color: #0073af;
    --accent-color: #0872ae;
    --text-dark: #2c3e50;
    --text-medium: #555;
    --text-light: #666;
    --success-color: #4CAF50;
    --warning-color: #ffd700;
    --error-color: #e74c3c;
    --error-gradient: linear-gradient(45deg, #e74c3c, #c0392b);
    
    /* HintergrÃ¼nde */
    --bg-white: #fff;
    --bg-light: #f8f9fa;
    --bg-gradient-primary: linear-gradient(135deg, #0872ae 0%, #764ba2 100%);
    --hero-overlay: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    
    /* Border Radius - Ihr einheitliches Design */
    --border-radius-card: 0 80px 0  80px; /* top-right, bottom-right, bottom-left, top-left */
    --border-radius-button: 50px;
    --border-radius-small: 5px;
    
    /* AbstÃ¤nde */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 60px;
    --spacing-section: 80px;
    
    /* Schatten */
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 15px rgba(231, 76, 60, 0.4);
    --shadow-button-hover: 0 6px 20px rgba(231, 76, 60, 0.6);
    
    /* Schriften */
    --font-size-hero: 3.2em;
    --font-size-h2: 2.5em;
    --font-size-h3: 1.8em;
    --font-size-h4: 1.3em;
    --font-size-large: 1.4em;
    --font-size-medium: 1.2em;
    --font-size-base: 1.1em;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: var(--hero-overlay), url('../../files/Schule/layout/css/files/Allgemein/layout/hero-image.svg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary-color);
    text-align: left;
    position: relative;
    padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xxl) var(--spacing-xl);
}

.hero .hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .hero-content h1 {
    font-size: var(--font-size-hero);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 300;
    color: white;
}

.hero .subtitle {
    font-size: var(--font-size-large);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-style: italic;
    color: white;
}

.hero .main-promise {
    font-size: var(--font-size-h3);
    margin-bottom: 2.5rem;
    color: var(--warning-color);
    font-weight: 500;
}

/* Contao-spezifische Anpassungen */
.hero .content-text,
.hero .content-headline,
.hero .content-hyperlink {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1rem;
    float: none !important;
}

.hero > * {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero .cta-buttons .content-hyperlink {
    width: auto !important;
    margin-bottom: 0;
}

.hero .rte {
    margin: 0;
}

.hero .rte p {
    margin: 0;
    color: inherit;
}

.hero code {
    background: transparent !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    padding: 0 !important;
    border: none !important;
}

/* ===================================
   CTA BUTTONS - EINHEITLICH
   =================================== */
.cta-button,
.cta-primary a,
.hero .cta-primary a {
    background: var(--error-gradient);
    color: white !important;
    padding: 18px 35px;
    border: none;
    border-radius: var(--border-radius-button);
    font-size: var(--font-size-medium);
    cursor: pointer;
    margin: var(--spacing-xs);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-button);
    text-align: center;
    font-weight: 500;
}

.cta-button:hover,
.cta-primary a:hover,
.hero .cta-primary a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
    text-decoration: none;
}

.cta-secondary,
.cta-secondary a,
.hero .cta-secondary a {
    background: transparent;
    color: white !important;
    padding: 18px 35px;
    border: 2px solid white;
    border-radius: var(--border-radius-button);
    font-size: var(--font-size-medium);
    cursor: pointer;
    margin: var(--spacing-xs);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-fast);
}

.cta-secondary:hover,
.cta-secondary a:hover,
.hero .cta-secondary a:hover {
    background: white;
    color: var(--text-dark) !important;
    text-decoration: none;
}

/* ===================================
   PAIN POINTS SECTION
   =================================== */
.pain-points {
    padding: var(--spacing-section) 0;
    background: var(--bg-white);
}

.pain-points h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.pain-item {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-card);
    text-align: center;
    border-left: 5px solid #e2001a;
    transition: transform var(--transition-fast);
    margin-bottom: var(--spacing-md);
}

.pain-item:hover {
    transform: translateY(-5px);
}

.pain-item h3 {
    color: var(--error-color);
    margin-bottom: 1rem;
    font-size: var(--font-size-h4);
}

.pain-item p {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

/* ===================================
   SOLUTION / BENEFITS SECTION
   =================================== */
.solution-preview {
    padding: var(--spacing-section) 0;
    background: var(--bg-gradient-primary);
    color: white;
    text-align: center;
}

.solution-preview h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 2rem;
}

.solution-preview p {
    font-size: var(--font-size-h4);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-md);
    margin: var(--spacing-xl);
    border-radius: var(--border-radius-card);
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: var(--font-size-medium);
}

/* ===================================
   RECOGNITION / INTEREST PHASE
   =================================== */
.recognition-box {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-heavy);
    margin-bottom: 50px;
    border-left: 5px solid var(--accent-color);
}

.recognition-box h3 {
    color: var(--accent-color);
    font-size: var(--font-size-h3);
    margin-bottom: 25px;
}

.recognition-list {
    list-style: none;
    padding: var(--spacing-lg);
}

.recognition-list li {
    padding: 12px 0;
    padding-left: 50px;
    position: relative;
    font-size: var(--font-size-base);
    color: var(--text-medium);
}

.recognition-list li::before {
    content: 'âœ“';
    position: absolute;
    left: var(--spacing-sm);
    color: var(--accent-color);
    font-weight: bold;
    font-size: var(--font-size-medium);
}

/* ===================================
   KONTAKT SECTION
   =================================== */
.contact-header {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
}

.contact-header h1 {
    color: var(--primary-color);
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-sm);
}

.contact-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
    margin-bottom: var(--spacing-md);
    border: 1px solid #ddd;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-h4);
}

.phone-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px var(--spacing-md);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--transition-fast);
}

.phone-number:hover {
    background-color: var(--secondary-color);
}

/* ===================================
   Preis-Boxen
   =================================== */
   .price-card {
            background: white;
            border: 2px solid #e0e7ff;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .price-card:hover {
            border-color: #667eea;
            transform: scale(1.02);
        }

        .price-card.featured {
            border-color: #ff6b6b;
            background: linear-gradient(135deg, #fff5f5, #ffffff);
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #667eea;
            margin: 1rem 0;
        }

/* ===================================
   Schritte-Box
   =================================== */
        .step {
            flex: 1;
            text-align: center;
            min-width: 250px;
        }

        .step-number {
            background: #667eea;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .arrow {
            font-size: 2rem;
            color: #667eea;
            opacity: 0.5;
        }


/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-card);
    margin-top: var(--spacing-lg);
    border: 1px solid #ddd;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #eee;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   LISTEN MIT HAKEN
   =================================== */
.haken li {
    margin: var(--spacing-xs) 0;
    padding-left: 25px;
    position: relative;
}

.haken li::before {
    content: 'âœ”';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: var(--font-size-medium);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.floating-button {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button img {
    width: 24px;
    height: 24px;
}

/* ===================================
   Zitat mit Quellenangabe
   =================================== */
    .dao-quote {
        font-style: italic;
        font-size: 1.1rem;
        text-align: center;
        color: #77b753;
        margin: 30px 0;
        padding: 20px;
        border-right: 4px solid #77b753;
        background: rgba(119, 183, 83, 0.25);
    }

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */
@media (max-width: 768px) {
    :root {
        --font-size-hero: 2.2em;
        --font-size-h2: 1.8em;
        --font-size-h3: 1.4em;
        --font-size-large: 1.1em;
        --spacing-xl: 20px;
        --spacing-section: 40px;
    }
    
    .hero {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .cta-button,
    .cta-primary a,
    .cta-secondary a,
    .hero .cta-primary a,
    .hero .cta-secondary a {
        padding: var(--spacing-sm) 25px;
        font-size: var(--font-size-base);
        display: block;
        margin: var(--spacing-xs) auto;
        max-width: 280px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-item {
        margin: var(--spacing-md);
    }
    
    .recognition-list {
        padding: var(--spacing-md);
    }
}

/* ===================================
   BARRIEREARMHEIT
   =================================== */
/* Fokus-Indikatoren fÃ¼r Tastaturnavigation */
.cta-button:focus,
.cta-primary a:focus,
.cta-secondary a:focus,
.phone-number:focus,
.floating-button:focus {
    outline: 3px solid var(--warning-color);
    outline-offset: 2px;
}

/* Besserer Kontrast fÃ¼r Links */
a:not(.cta-button):not(.cta-primary):not(.cta-secondary):not(.phone-number) {
    color: var(--primary-color);
    text-decoration: underline;
}

a:not(.cta-button):not(.cta-primary):not(.cta-secondary):not(.phone-number):hover {
    color: var(--secondary-color);
}

/* Reduzierte Bewegung fÃ¼r Nutzer mit vestibulÃ¤ren StÃ¶rungen */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pain-item:hover,
    .floating-button:hover,
    .cta-button:hover,
    .cta-primary a:hover {
        transform: none;
    }
}
/* horizontal Hintergrund der Navigation */
#header .mod_navigation {
    padding:0 200px 0 0;
    background-color:#b1c800;
    color:#e1e1e2;
}

/* horizontal Liste und Listenelemente gestalten */
#header .mod_navigation ul {
    width:auto;
    float:left;
    margin:0;
    padding:0 0 0 15px;
    list-style-type:none;
}
/* horizontal Listenpunkte nebeneinander */
#header .mod_navigation li {
    width:auto;
    float:left;
    margin:0 10px;
}
/* horizontal Menüpunkte gestalten */
#header .mod_navigation a,
#header .mod_navigation span {
    display:block;
    line-height:35px;
    text-decoration:none;
    color:#1a171a;
}

/* horizontal aktiven Menüpunkt hervorheben */
#header .mod_navigation .active,
#header .mod_navigation .trail {
    font-weight:bold;
    color:#1a171a;
}
/* horizontal Rollover und Tab-Fokus */
#header .mod_navigation a:hover,
#header .mod_navigation a:focus {
    font-weight:bold;
    color:#1a171a;
}

/* dropdown zweite Ebene ausblenden */
#header .mod_navigation .level_2 {
    width:0;
    height:0;
    left:-32768px;
    top:-32768px;
    position:absolute;
    overflow:hidden;
    display:inline;
}

/* dropdown Listenelemente zweite Ebene untereinander */
#header .mod_navigation .level_2 li {
    clear:both;
}

/* dropdown zweite Ebene bei MouseOver einblenden */
#header .mod_navigation li:hover .level_2 {
    width:250px;
    height:auto;
    left:auto;
    top:auto;
    overflow:auto;
    display:block;
    margin-left:-15px;
    padding-left:10px;
    white-space:normal;
    background-color:rgba(177,200,0,.65);
    line-height:10pt;
    z-index: 1000;
}

/* dropdown Hyperlinks und Span gestalten */
#header .mod_navigation .level_2 a,
#header .mod_navigation .level_2 span {
    font-size:13px;
    line-height:32px;
    font-weight:normal;
}

/* dropdown aktiven Menüpunkt hervorheben */
#header .mod_navigation .level_2 span.active {
    font-weight:bold;
}

/* dropdown Rollover und Focus gestalten +/
#header .mod_navigation .level_2 a:hover,
#header .mod_navigation .level_2 a:focus {
    background-color:rgba(177,200,0,.85);
    font-size:13px;
    line-height:32px;
    font-weight:bold;
}

/* vertikal Liste und Listenelemente gestalten */
#left .mod_navigation ul {
    margin-top:0;
    padding-top:0;
    list-style-type:none;
}

/* vertikal Menüpunkte gestalten */
#left .mod_navigation a,
#left .mod_navigation span {
    display:block;
    margin:0 1.5em 1em;
    padding:0;
    text-decoration:none;
    color:#444;
    outline:0;
}

/* vertikal Rollover und Tab-Fokus */
#left .mod_navigation a:hover,
left .mod_navigation a:focus {
    font-weight:bold;
    color:#141414;
}

/* vertikal aktiven Menüpunkt hervorheben */
left .mod_navigation span.active,
left .mod_navigation .trail {
    font-weight:bold;
    color:#141414;
}

/* vertikal_2 Unterpunkte links einrücken */
#left .mod_navigation .level_2 a,
#left .mod_navigation .level_2 span {
    margin-left:12px;
    font-size:12px;
    font-weight:normal;
}

/* vertikal_2 Hervorhebung für Unterpunkte bei hover und focus */
#left .mod_navigation .level_2 a:hover,
#left .mod_navigation .level_2 a:focus {
    font-weight:bold;
    font-variant:small-caps;
    color:#141414;
}

/* vertikal_2 aktiven Menüpunkt hervorheben/ alle Links im aktiven Listenelement einfärben */
#left .mod_navigation .level_2 span.active {
    font-weight:bold;
}
/* meta Ausrichtung der Menüpunkte im Fußbereich rechts und nebeneinander */
#footer .mod_customnav li {
    float:right;
    margin-top:0;
    margin-right:15px;
    padding-top:0;
    list-style-type:none;
}

/* meta Abstände der Menüpunkte */
#footer .mod_customnav a,
#footer .mod_customnav span {
    display:block;
    margin-right:12px;
    line-height:1.7;
}

/* sitemap entfernt den unteren Abstand der inneren Listen */
.mod_sitemap ul ul {
    margin-bottom:0;
}

/* sitemap Format Listeneinträge */
.mod_sitemap li {
    margin-right:0;
    list-style-type:none;
}

/* sitemap Format Listeneinträge */
.mod_sitemap li li {
    margin-left:1.5em;
}

/* sitemap Format Listeneinträge */
.mod_sitemap a {
    font-weight:bold;
    text-decoration:none;
}

/* sitemap Format Listeneinträge 2. Ebene*/
.mod_sitemap .level_2 a {
    font-weight:normal;
}

div.mod_newsmenu {
    float:left;
    margin:0;
}

mod_newsmenu li {
    margin:0;
    list-style-type:none;
}

mod_newsmenu li.year {
    margin:0 0 2em;
    font-size:14px;
    font-weight:bold;
}

mod_newsmenu .level_2 {
    margin:1em 0 0;
    font-size:13px;
}




/* zweite Ebene ausblenden */
#header .mod_navigation .level_2 {
    width:0;
    height:0;
    left:-32768px;
    top:-32768px;
    position:absolute;
    overflow:hidden;
    display:inline;
}

/* Listenelemente zweite Ebene untereinander */
#header .mod_navigation .level_2 li {
    clear:both;
}

/* zweite Ebene bei MouseOver einblenden */
#header .mod_navigation li:hover .level_2 {
    width:250px;
    height:auto;
    left:auto;
    top:auto;
    overflow:auto;
    display:block;
    margin-left:-15px;
    padding-left:10px;
    white-space:normal;
    background-color:rgba(177,200,0,.65);
    line-height:10pt;
    z-index: 1000;
}

/* Hyperlinks und Span gestalten */
#header .mod_navigation .level_2 a,
#header .mod_navigation .level_2 span {
    font-size:13px;
    line-height:32px;
    font-weight:normal;
}

/* aktiven Menüpunkt hervorheben */
#header .mod_navigation .level_2 span.active {
    font-weight:bold;
}

/* Rollover und Focus gestalten +/
#header .mod_navigation .level_2 a:hover,
#header .mod_navigation .level_2 a:focus {
    background-color:rgba(177,200,0,.85);
    font-size:13px;
    line-height:32px;
    font-weight:bold;
}
/* Hintergrund der Navigation */
#header .mod_navigation {
    padding:0 200px 0 0;
    background-color:#b1c800;
    color:#e1e1e2;
}

/* Liste und Listenelemente gestalten */
#header .mod_navigation ul {
    width:auto;
    float:left;
    margin:0;
    padding:0 0 0 15px;
    list-style-type:none;
}
/* Listenpunkte nebeneinander */
#header .mod_navigation li {
    width:auto;
    float:left;
    margin:0 10px;
}
/* Menüpunkte gestalten */
#header .mod_navigation a,
#header .mod_navigation span {
    display:block;
    line-height:35px;
    text-decoration:none;
    color:#1a171a;
}

/* aktiven Menüpunkt hervorheben */
#header .mod_navigation .active,
#header .mod_navigation .trail {
    font-weight:bold;
    color:#1a171a;
}
/* Rollover und Tab-Fokus */
#header .mod_navigation a:hover,
#header .mod_navigation a:focus {
    font-weight:bold;
    color:#1a171a;
}
/* Ausrichtung der Menüpunkte im Fußbereich rechts und nebeneinander */
#footer .mod_customnav li {
    float:right;
    margin-top:0;
    margin-right:15px;
    padding-top:0;
    list-style-type:none;
}

/* Abstände der Menüpunkte */
#footer .mod_customnav a,
#footer .mod_customnav span {
    display:block;
    margin-right:12px;
    line-height:1.7;
}


div.mod_newsmenu {
    float:left;
    margin:0;
}

mod_newsmenu li {
    margin:0;
    list-style-type:none;
}

mod_newsmenu li.year {
    margin:0 0 2em;
    font-size:14px;
    font-weight:bold;
}

mod_newsmenu .level_2 {
    margin:1em 0 0;
    font-size:13px;
}



/* Liste und Listenelemente gestalten */
#left .mod_navigation ul {
    margin-top:0;
    padding-top:0;
    list-style-type:none;
}

/* Menüpunkte gestalten */
#left .mod_navigation a,
#left .mod_navigation span {
    display:block;
    margin:0 1.5em 1em;
    padding:0;
    text-decoration:none;
    color:#444;
    outline:0;
}

/* Rollover und Tab-Fokus */
#left .mod_navigation a:hover,
left .mod_navigation a:focus {
    font-weight:bold;
    color:#141414;
}

/* aktiven Menüpunkt hervorheben */
left .mod_navigation span.active,
left .mod_navigation .trail {
    font-weight:bold;
    color:#141414;
}

/* Unterpunkte links einrücken */
#left .mod_navigation .level_2 a,
#left .mod_navigation .level_2 span {
    margin-left:12px;
    font-size:12px;
    font-weight:normal;
}

/* Hervorhebung für Unterpunkte bei hover und focus */
#left .mod_navigation .level_2 a:hover,
#left .mod_navigation .level_2 a:focus {
    font-weight:bold;
    font-variant:small-caps;
    color:#141414;
}

/* aktiven Menüpunkt hervorheben/ alle Links im aktiven Listenelement einfärben */
#left .mod_navigation .level_2 span.active {
    font-weight:bold;
}


