/* ================================================
   ARBORISTAS TREE SERVICE - THEME CSS
   Version: 2.0 (Refactored & Optimized)
   Bereinigte und mobile-optimierte Version
   ================================================ */

/* ================================================
   1. CSS VARIABLES (Custom Properties)
   ================================================ */
:root {
    /* Brand Colors */
    --color-primary: #d34630;
    --color-dark-green: #233326;
    --color-light-green: #e2efe5;
    --color-medium-green: #239978;
    --color-dark-bg: #111111;
    
    /* Text Colors */
    --color-text-primary: #3b4151;
    --color-text-secondary: #666;
    --color-text-light: #777;
    --color-text-dark: #222;
    --color-white: #fff;
    
    /* Background Colors */
    --bg-light: #ededed;
    --bg-texture-light: url('../img/bg-textures/asfalt-light.png');
    --bg-texture-snow: url('../img/bg-textures/snow.png');
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    
    /* Typography */
    --font-primary: 'Londrina', 'Arial', sans-serif;
    --font-size-base: 1.4rem;
    --font-size-h1: 5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.4rem;
    
    /* Layout */
    --max-width-content: 1080px;
    --max-width-text: 700px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
}

/* ================================================
   2. RESET & BASE STYLES
   ================================================ */

/* Utility Classes */
.clear { clear: both; }
.center { text-align: center; }
.relative { position: relative; }

/* Body & Global Styles */
body {
    font-family: var(--font-primary);
    text-align: center;
    background: var(--color-dark-bg);
    color: var(--color-text-secondary);
    padding-top: 46px;
    margin: 0;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Text Formatting */
strong { font-weight: bold; }
em { font-style: italic; }

p {
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 1em;
}

/* ================================================
   3. LAYOUT
   ================================================ */

/* Page Container */
.page {
    text-align: left;
    padding-top: 30px;
    background: var(--bg-texture-light) var(--color-light-green);
    z-index: 1;
    padding-bottom: var(--spacing-xl);
}

/* Content Wrapper */
.content {
    max-width: var(--max-width-content);
    margin: 0 auto !important;
    padding: var(--spacing-sm);
}

/* Entry Content */
.entry {
    padding: 0 25px;
}

/* ================================================
   4. HEADER & NAVIGATION
   ================================================ */

/* Header */
header {
    background: var(--color-dark-green);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Logo */
.head-logo {
    max-width: 100px;
    display: inline-block;
    margin-top: 8px;
}

.jump-logo {
    max-width: 320px;
    margin: auto;
    margin-top: -110px;
    background: var(--color-light-green);
    padding: 16px 40px;
    border-radius: 8px;
}

.jump-logo img {
    opacity: 0.6;
}

/* Navigation */
nav {
    font-family: var(--font-primary);
    width: 100%;
}

nav .main-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav .main-nav li {
    display: inline-block;
    margin-left: var(--spacing-sm);
    position: relative;
}

nav .main-nav li a {
    padding: 6px 12px;
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-light-green);
    letter-spacing: 1px;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

nav .main-nav li a:hover,
.current-menu-item a,
.current_page_parent a,
.current-page-ancestor a,
.sub-parent {
    text-decoration: none;
    background: var(--color-light-green);
    color: var(--color-text-dark) !important;
}

/* Mobile Navigation */
.mobile-triggers {
    display: none;
}

/* ================================================
   5. TYPOGRAPHY
   ================================================ */

/* Headings */
h1 {
    font-size: var(--font-size-h1);
    font-family: var(--font-primary);
    letter-spacing: 1px;
    margin: 0;
}

h1.small {
    font-size: 3rem;
}

.entry h1 {
    text-align: center;
    transition: var(--transition-normal);
    font-size: var(--font-size-h1);
    letter-spacing: 1px;
}

.entry h2 {
    max-width: var(--max-width-text);
    margin: var(--spacing-md) auto var(--spacing-sm) auto;
    padding: 6px 0;
    font-size: var(--font-size-h2);
    border-bottom: 4px solid rgba(0, 0, 0, 0.1) !important;
}

.entry h3 {
    max-width: var(--max-width-text);
    margin: 25px auto var(--spacing-sm) auto;
    padding: 6px 0;
    color: var(--color-primary) !important;
    border-bottom: 4px dotted rgba(0, 0, 0, 0.1) !important;
    border-top: 4px dotted rgba(0, 0, 0, 0.1) !important;
    text-align: center;
}

.entry h4 {
    padding: 8px 0;
    max-width: var(--max-width-text);
    margin: auto;
    color: var(--color-primary);
}

.entry p {
    max-width: var(--max-width-text);
    margin: auto;
}

/* ================================================
   6. BUTTONS & CTAs
   ================================================ */

a.button {
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-block;
    padding: 2px 15px;
    border-radius: 5px;
    border: 3px solid var(--color-primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
}

a.button:hover {
    color: var(--color-primary);
    background: transparent;
}

.button.prev,
.button.next {
    font-size: 12px;
    margin-top: var(--spacing-sm);
}

.call-to-contact {
    text-align: center;
    font-size: 1.2em;
    border: 2px dashed rgba(0, 0, 0, 0.4) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    padding: var(--spacing-sm);
    margin: var(--spacing-md) auto !important;
    max-width: 400px !important;
    display: block;
    rotate: -1deg;
}

/* ================================================
   7. HERO SECTION
   ================================================ */

.hero-head {
    padding: 32vh 0;
    color: var(--color-white);
}

.hero-head.texture {
    background: var(--bg-texture-light);
}

.hero-head img {
    filter: drop-shadow(4px 4px 2px rgba(20, 20, 20, 0.5));
}

.hero-head h1 {
    font-size: 6rem;
    line-height: 95%;
    padding: 0 var(--spacing-md);
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
    font-family: var(--font-primary);
}

.hero-head h3 {
    font-size: 3rem;
    padding: 0;
    font-family: var(--font-primary);
    margin-bottom: -6px;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.hero-head .teaser {
    rotate: -2.5deg;
    display: inline-block;
    color: var(--color-white);
    padding: var(--spacing-xs) 0;
    max-width: 680px;
}

/* ================================================
   8. SPACERS & DIVIDERS
   ================================================ */

.spacer {
    clear: both;
    margin: 60px 0 var(--spacing-md) 0;
    text-align: center;
    position: relative;
    font-family: var(--font-primary);
    background: url('../img/spacer-deco.png') repeat-x center center;
    line-height: 15px;
}

hr {
    background: url('../img/spacer-deco.png') repeat-x center center;
    height: 15px;
    border: none;
}

.spacer.top-spacer {
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
    display: none;
}

.spacer .spacer-title {
    padding: 3px 33px 2px 33px;
    font-size: 4rem;
    color: var(--color-dark-green);
    text-transform: uppercase;
    transition: var(--transition-normal);
    letter-spacing: 2px;
    background: var(--bg-texture-light) var(--color-light-green);
}

.spacer .spacer-title.none {
    background-image: none !important;
}

.spacer-title a {
    color: var(--color-white);
}

/* ================================================
   9. BLOG & POSTS
   ================================================ */

/* Blog Navigation */
.blog-navigation {
    margin: var(--spacing-md) 0;
}

.blog-navigation .nav-left a,
.blog-navigation .nav-right a {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 4px 8px;
}

.blog-navigation .nav-left {
    float: left;
}

.blog-navigation .nav-right {
    float: right;
}

/* Blogpost */
.blogpost {
    margin: 25px 0;
    position: relative;
    background: var(--bg-texture-snow) rgba(6, 40, 52, 0.8);
}

.blogpost h2 {
    margin-top: var(--spacing-sm);
}

.blogpost .mini-nav {
    margin-top: var(--spacing-sm);
}

.blogpost p {
    color: var(--color-white);
    font-family: var(--font-primary);
}

.blogpost h2 {
    color: var(--color-white);
    font-size: var(--font-size-h2);
    border-bottom: none !important;
    margin-bottom: 0;
}

.blogpost h3 {
    color: var(--color-white);
    margin: var(--spacing-xs) 0 8px 0;
    font-size: 1rem;
    border-bottom: none !important;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text-dark);
    padding: 3px var(--spacing-sm) !important;
    display: inline-block;
}

.blogpost .featured {
    color: var(--color-white);
    padding: 6px var(--spacing-sm);
    background: #08ade2;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
}

.blogpost .btn {
    color: var(--color-white);
    border: 0;
    background: var(--color-primary);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0;
    font-size: 1.2rem;
}

.blogpost .spacer {
    background: transparent !important;
    text-align: left;
}

.post-list-inlay {
    height: 100%;
    background: var(--bg-texture-snow) rgba(6, 40, 52, 0.6);
    padding: 3% var(--spacing-lg);
}

/* Tags */
.post .tags {
    margin: var(--spacing-md) 0;
}

.post .tags a {
    padding: 7px var(--spacing-sm);
    font-weight: 600;
    background: var(--bg-light);
    color: #999;
    display: inline-block;
    font-size: 16px !important;
    margin-bottom: var(--spacing-sm);
    border-radius: 4px;
    margin-right: 8px;
}

.post .tags a:hover {
    background: #5fcfca;
    color: var(--color-white);
}

.page-tags {
    padding: 4px var(--spacing-sm);
}

.page-tags a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 7px;
    margin: 4px;
    text-transform: uppercase;
}

/* ================================================
   10. GALLERIES
   ================================================ */

/* Post Gallery */
.post-gallery {
    margin: var(--spacing-md) 0;
}

.post-gallery h3 {
    text-align: center;
    padding-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: 2.5rem !important;
    color: var(--color-medium-green);
}

.post-gallery .item {
    box-sizing: border-box;
    margin-bottom: 3%;
}

.post-gallery .item img {
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--spacing-sm);
}

/* ================================================
   11. CHILD LIST / CATEGORY GRID
   ================================================ */

.childlist {
    padding: var(--spacing-sm) 4px;
    margin: 0;
}

.childlist .item {
    padding: 1%;
    position: relative;
}

.childlist .item a {
    display: block;
}

.childlist .item:hover {
    filter: saturate(50%);
}

.childlist .item img {
    width: 100%;
}

.childlist .item h4 {
    position: absolute;
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    bottom: 14%;
    z-index: 99;
    color: var(--color-white);
    left: 0;
    width: 99%;
    rotate: -1.9deg;
    font-size: 3.5rem !important;
    font-family: var(--font-primary);
    text-shadow: 3px 3px 0 rgba(50, 50, 50, 0.6);
    text-align: center;
    text-transform: uppercase;
}

/* ================================================
   12. LISTS
   ================================================ */

.entry ul {
    max-width: var(--max-width-text);
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md) 55px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.entry ul li {
    list-style: none;
    line-height: 30px;
    text-transform: initial;
}

.entry ul li .checked {
    color: var(--color-primary);
    font-size: 30px;
    position: absolute;
    text-indent: -30px;
}

/* ================================================
   13. FOOTER
   ================================================ */

footer {
    background: var(--color-dark-bg);
    text-align: left;
    padding: var(--spacing-lg) 0;
}

.copyright {
    text-align: center;
    font-size: 13px;
    margin: var(--spacing-lg) 0;
}

footer .tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .tags li a {
    font-size: var(--font-size-h2);
}

/* ================================================
   14. SPECIAL SECTIONS
   ================================================ */

/* Fullbank */
.fullbank {
    max-width: var(--max-width-content);
    margin: auto;
    padding: 40px 0;
    color: #f2f2f2;
}

.fullbank p {
    color: var(--bg-light);
}

.fullbank h4 {
    font-size: var(--font-size-h2);
    text-align: left;
}

/* Mini Nav (Breadcrumbs) */
.mini-nav {
    margin: 0 auto var(--spacing-md) auto;
    font-size: 1rem;
    padding: 6px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-light);
    width: 100%;
}

.mini-nav a {
    text-decoration: underline;
    margin-right: 0;
}

/* Orte (Locations) */
#orte {
    margin-top: var(--spacing-xl);
    padding-bottom: 26px;
    border-bottom: 3px dashed rgba(255, 255, 255, 0.6);
}

#orte h3 {
    margin-bottom: var(--spacing-md);
    padding-bottom: 14px;
    border-bottom: 3px dashed rgba(255, 255, 255, 0.6);
}

#orte h4 {
    font-size: 1.5rem;
    text-align: center;
}

#orte ul {
    margin: 0;
    padding: 0 15px;
    list-style: none;
}

#orte ul li {
    margin: 0;
    padding: 0 var(--spacing-sm);
    display: inline-block;
    list-style: none;
}

#orte-leistungen {
    background: #d7e3d9;
    padding: var(--spacing-md);
}

/* Slider */
#slider {
    box-sizing: border-box;
    margin: var(--spacing-xs) 0;
    margin-bottom: var(--spacing-md);
}

#slider img {
    max-height: 360px;
}

.slider {
    margin-top: var(--spacing-md);
}

/* Long Text Extensions */
.long-text hr {
    margin: 3.5em;
}

.long-text h2 {
    font-size: var(--font-size-h2);
    border-bottom: 4px dotted rgba(0, 0, 0, 0.1) !important;
    border-top: 4px dotted rgba(0, 0, 0, 0.1) !important;
    text-align: center;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.2);
}

.long-text h3 {
    border: none !important;
    border-bottom: 3px solid rgba(0, 0, 0, 0.3) !important;
    text-align: left;
}

.long-text ul li {
    font-size: 1.2em;
    border-left: 4px solid rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-sm);
    padding-left: 16px;
}

.long-text ol {
    max-width: var(--max-width-text);
    margin: 15px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md) 55px;
}

.long-text ol li {
    font-size: 1.1em;
    margin-bottom: var(--spacing-sm);
    padding-left: 16px;
}

/* Iframe */
iframe {
    width: 100%;
    min-height: 450px;
    border: 0;
}

/* Misc */
.blue {
    color: #08ade2;
}

.jump-posts-nav a {
    font-size: 1.5rem !important;
}

.jump-posts-nav .prev {
    float: left;
}

.jump-posts-nav .next {
    float: right;
}

.ghost-post {
    display: inline;
    margin: 0 !important;
}

.multirow-more {
    text-align: center;
}

h1.search-for {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: bold;
    padding: 7px var(--spacing-md);
    margin-top: 34px;
}

/* ================================================
   15. RESPONSIVE - TABLET (max-width: 1080px)
   ================================================ */

@media (max-width: 1080px) {
    .page {
        padding: 0 var(--spacing-lg);
    }
}

/* ================================================
   16. RESPONSIVE - TABLET (max-width: 960px)
   ================================================ */

@media (max-width: 960px) {
    header {
        height: auto !important;
    }

    header .logo {
        position: initial !important;
        margin: auto;
        margin-top: var(--spacing-md);
        max-width: 320px;
        padding: var(--spacing-md);
        width: 80% !important;
    }

    header .logo img {
        width: 100% !important;
    }

    nav {
        position: initial !important;
        text-align: center;
    }
}

/* ================================================
   17. RESPONSIVE - MOBILE (max-width: 740px)
   ================================================ */

@media (max-width: 740px) {
    header {
        display: none;
    }

    .mobile-triggers {
        display: block;
    }

    body {
        background-image: none !important;
        padding-top: 0;
    }

    .page {
        transition: var(--transition-normal);
        padding: var(--spacing-sm) 24px;
        margin-top: 0;
        box-shadow: none;
        padding-bottom: var(--spacing-xl);
        margin-bottom: 0;
    }

    header .head-info {
        display: none;
    }

    #slider {
        display: none;
    }
}

/* ================================================
   18. RESPONSIVE - MOBILE (max-width: 560px)
   ================================================ */

@media (max-width: 560px) {
    /* Typography */
    .hero-head h1 {
        font-size: 3.5rem !important;
        line-height: 95%;
        text-shadow: 2px 2px 10px rgba(50, 50, 50, 0.5);
    }

    .hero-head h3 {
        font-size: 1.5rem !important;
        text-shadow: 2px 2px 10px rgba(50, 50, 50, 0.5);
    }

    .entry h1 {
        font-size: 4.3rem;
    }

    .entry p {
        font-size: 1.15em;
    }

    .entry h3 {
        font-size: var(--font-size-h3);
    }

    #start-page h1 {
        font-size: 3rem;
    }

    /* Navigation */
    nav {
        margin: var(--spacing-sm) 0;
        text-align: center;
    }

    nav .main-nav li {
        display: inline-block;
        float: none;
        margin-left: 0;
    }

    nav .main-nav li a {
        font-size: 18px;
    }

    /* Layout */
    .entry {
        padding: 0;
    }

    .head-img {
        display: none;
    }

    /* Iframe */
    iframe {
        min-height: 155px;
    }

    /* Child List */
    .childlist .item h4 {
        font-size: 2.8rem !important;
    }
}

/* ================================================
   19. RESPONSIVE - MOBILE (max-width: 430px)
   ================================================ */

@media (max-width: 430px) {
    .childlist .item h4 {
        position: absolute;
        padding: var(--spacing-xs) var(--spacing-sm) !important;
        bottom: 14%;
        z-index: 99;
        color: var(--color-white);
        left: 0;
        width: 99%;
        rotate: -1.9deg;
        font-size: 2.8rem !important;
        font-family: var(--font-primary);
        text-shadow: 3px 3px 0 rgba(50, 50, 50, 0.6);
        text-align: center;
        text-transform: uppercase;
    }
}

/* ================================================
   20. ANIMATIONS
   ================================================ */

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bg-image-inlay {
    animation: fadein 5s;
}

/* ================================================
   21. PRINT STYLES
   ================================================ */

@media print {
    header,
    footer,
    .mobile-triggers,
    nav,
    .blog-navigation {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .page {
        background: white;
        box-shadow: none;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* ================================================
   22. ACCESSIBILITY IMPROVEMENTS
   ================================================ */

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100000;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ================================================
   12. LISTS - OPTIMIERT FÜR MOBILE
   ================================================ */

.entry ul {
    max-width: var(--max-width-text);
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px 20px 40px; /* Reduziertes Padding */
    border: 1px solid rgba(0, 0, 0, 0.03);
    list-style-position: outside;
}

.entry ul li {
    list-style: disc;
    list-style-position: outside;
    margin-left: 0;
    padding-left: 10px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1.2rem; /* Basis-Größe für Desktop */
    text-transform: initial;
}

.entry ul li .checked {
    color: var(--color-primary);
    font-size: 24px; /* Reduziert von 30px */
    position: absolute;
    margin-left: -30px;
    margin-top: 2px;
}

.entry ol {
    max-width: var(--max-width-text);
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px 20px 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    counter-reset: list-counter;
}

.entry ol li {
    list-style: decimal;
    list-style-position: outside;
    margin-left: 0;
    padding-left: 10px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: initial;
}

/* Long-Text Listen (spezielle Formatierung) */
.long-text ul {
    max-width: var(--max-width-text);
    margin: 15px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px 20px 40px;
}

.long-text ul li {
    font-size: 1.2rem; /* Konsistent mit entry ul */
    border-left: 4px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    padding-left: 16px;
    line-height: 1.6;
    list-style: none;
}

.long-text ol {
    max-width: var(--max-width-text);
    margin: 15px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px 20px 40px;
}

.long-text ol li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 16px;
    line-height: 1.6;
}

/* ================================================
   RESPONSIVE - TABLET (max-width: 768px)
   ================================================ */

@media (max-width: 768px) {
    .entry ul,
    .entry ol,
    .long-text ul,
    .long-text ol {
        padding: 15px 20px 15px 30px; /* Weniger Padding */
        margin: 15px 10px; /* Seitlicher Abstand reduziert */
    }

    .entry ul li,
    .entry ol li {
        font-size: 1.1rem; /* Etwas kleiner */
        line-height: 1.5;
        margin-bottom: 10px;
        padding-left: 8px;
    }

    .long-text ul li {
        font-size: 1.05rem;
        padding-left: 12px;
    }

    .long-text ol li {
        font-size: 1rem;
        padding-left: 12px;
    }

    .entry ul li .checked {
        font-size: 20px;
        margin-left: -26px;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (max-width: 560px)
   ================================================ */

@media (max-width: 560px) {
    .entry ul,
    .entry ol,
    .long-text ul,
    .long-text ol {
        padding: 12px 15px 12px 25px; /* Noch kompakter */
        margin: 12px 5px;
        font-size: 0.95rem; /* Basis kleiner */
    }

    .entry ul li,
    .entry ol li {
        font-size: 1rem !important; /* Optimale Lesegröße Mobile */
        line-height: 1.5;
        margin-bottom: 8px;
        padding-left: 6px;
    }

    .long-text ul li {
        font-size: 0.95rem !important;
        padding-left: 10px;
        border-left-width: 3px; /* Dünnerer Border */
    }

    .long-text ol li {
        font-size: 0.9rem !important;
        padding-left: 10px;
    }

    .entry ul li .checked {
        font-size: 18px;
        margin-left: -24px;
        margin-top: 0;
    }

    /* Wenn Listen in Listen (nested) */
    .entry ul ul,
    .entry ol ol,
    .entry ul ol,
    .entry ol ul {
        padding: 8px 10px 8px 20px;
        margin: 8px 0;
    }

    .entry ul ul li,
    .entry ol ol li {
        font-size: 0.9rem !important;
        margin-bottom: 6px;
    }
}

/* ================================================
   RESPONSIVE - SEHR KLEINE MOBILE (max-width: 400px)
   ================================================ */

@media (max-width: 400px) {
    .entry ul,
    .entry ol,
    .long-text ul,
    .long-text ol {
        padding: 10px 12px 10px 20px;
        margin: 10px 3px;
    }

    .entry ul li,
    .entry ol li {
        font-size: 0.95rem !important;
        line-height: 1.4;
        margin-bottom: 6px;
        padding-left: 4px;
    }

    .long-text ul li,
    .long-text ol li {
        font-size: 0.9rem !important;
        padding-left: 8px;
    }

    .entry ul li .checked {
        font-size: 16px;
        margin-left: -22px;
    }
}

/* ================================================
   ZUSÄTZLICHE OPTIMIERUNGEN
   ================================================ */

/* Verhindert, dass Listen zu breit werden */
.entry ul,
.entry ol {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Links in Listen */
.entry ul li a,
.entry ol li a {
    word-break: break-word;
    display: inline;
}

/* Bessere Lesbarkeit bei langen Texten in Listen */
.entry ul li,
.entry ol li {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Bilder in Listen responsive */
.entry ul li img,
.entry ol li img {
    max-width: 100%;
    height: auto;
    margin: 8px 0;
}

/* ================================================
   SPEZIAL: Orte-Listen (Footer)
   ================================================ */

#orte ul li {
    font-size: 1rem !important; /* Standard-Größe */
}

@media (max-width: 560px) {
    #orte ul li {
        font-size: 0.9rem !important;
        padding: 0 6px;
        margin: 4px 0;
        display: block; /* Untereinander auf Mobile */
        width: 100%;
    }
}

/* ================================================
   FOOTER TAGS
   ================================================ */

footer .tags li {
    font-size: 1.2rem;
}

@media (max-width: 560px) {
    footer .tags li {
        font-size: 1rem;
        display: inline-block;
        margin: 4px 2px;
    }
    
    footer .tags li a {
        font-size: 0.9rem !important;
        padding: 4px 8px;
    }
}
/* ================================================
   6B. TRUST BADGES & BOXEN
   ================================================ */

/* Trust Badges Container */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 30px 0;
    padding: 0;
}

.trust-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

/* Einzelne Trust Badge */
.trust-badge {
    flex: 1 1 calc(25% - 15px); /* 4 Spalten auf Desktop */
    min-width: 140px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box;
    transition: var(--transition-normal);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-dark-green);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 600;
}

.trust-badge p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ================================================
   CONTACT BOX
   ================================================ */

.contact-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px 15px;
    border-left: 4px solid var(--color-medium-green);
    margin: 20px 10px;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-box p {
    margin: 8px 0 !important;
    padding: 0 !important;
    font-size: 1.1rem;
}

.contact-box strong {
    color: var(--color-dark-green);
    font-size: 1.2rem;
}

.contact-box a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    border-bottom: 2px dashed var(--color-primary);
}

.contact-box a:hover {
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
}

/* ================================================
   PRICE EXAMPLES
   ================================================ */

.price-example {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 15px;
    margin: 15px 10px;
    border-radius: 5px;
    border-left: 4px solid #ff9800;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-example h4 {
    color: #e65100;
    margin-top: 0 !important;
    padding-left: 0 !important;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price-example ul {
    margin: 10px 0 0 0 !important;
    padding-left: 20px !important;
    background: transparent !important;
    border: none !important;
}

.price-example li {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.price-example strong {
    color: #e65100;
    font-size: 1.1rem;
}

/* ================================================
   EXAMPLE BOX
   ================================================ */

.example-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 15px;
    margin: 20px 10px;
    border-left: 4px solid #2196f3;
    border-radius: 5px;
    font-style: italic;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.example-box p {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1.05rem;
    color: #1565c0;
}

.example-box strong {
    color: #0d47a1;
    font-style: normal;
}

/* ================================================
   FAQ ITEMS
   ================================================ */

.faq-item {
    margin: 0 10px 25px 10px;
    padding: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: var(--transition-normal);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.35);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--color-dark-green) !important;
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
    padding-left: 0 !important;
    border: none !important;
    text-align: left !important;
}

.faq-item p {
    padding-left: 0 !important;
    margin: 0 !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ================================================
   CTA BOX
   ================================================ */

.cta-box {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #2d5016 100%);
    color: var(--color-white);
    padding: 25px 20px;
    margin: 30px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.cta-box h3 {
    color: var(--color-white) !important;
    margin-top: 0 !important;
    padding: 0 !important;
    font-size: 2rem !important;
    border: none !important;
    text-align: left !important;
}

.cta-box p {
    color: var(--color-white) !important;
    padding: 0 !important;
    margin: 10px 0 !important;
    font-size: 1.1rem;
}

.cta-box strong {
    color: #fff;
    font-weight: 700;
}

.cta-box a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}

.cta-box a:hover {
    border-bottom: 2px solid rgba(255, 255, 255, 1);
}

.cta-box ul {
    padding-left: 20px !important;
    margin: 15px 0 !important;
    background: transparent !important;
    border: none !important;
}

.cta-box li {
    color: var(--color-white) !important;
    font-size: 1.05rem !important;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ================================================
   RESPONSIVE - TABLET (max-width: 768px)
   ================================================ */

@media (max-width: 768px) {
    /* Trust Badges: 2 Spalten */
    .trust-badge {
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
    }

    /* Boxen */
    .contact-box,
    .price-example,
    .example-box,
    .faq-item,
    .cta-box {
        margin: 15px 5px;
        padding: 15px;
    }

    .faq-item h3 {
        font-size: 1.2rem !important;
    }

    .cta-box h3 {
        font-size: 1.7rem !important;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (max-width: 560px)
   ================================================ */

@media (max-width: 560px) {
    /* Trust Badges: 2 Spalten bleiben */
    .trust-badges {
        gap: 12px;
        margin: 15px 0 20px 0;
    }

    .trust-container {
        gap: 12px;
    }

    .trust-badge {
        flex: 1 1 calc(50% - 12px);
        min-width: 120px;
        padding: 15px 10px;
    }

    .trust-badge strong {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .trust-badge p {
        font-size: 0.85rem;
    }

    /* Boxen kompakter */
    .contact-box,
    .price-example,
    .example-box,
    .faq-item,
    .cta-box {
        margin: 12px 3px;
        padding: 12px;
    }

    .contact-box p,
    .example-box p,
    .faq-item p {
        font-size: 1rem;
    }

    .price-example h4 {
        font-size: 1.15rem;
    }

    .price-example li {
        font-size: 0.95rem !important;
    }

    .faq-item h3 {
        font-size: 1.1rem !important;
    }

    .cta-box h3 {
        font-size: 1.5rem !important;
    }

    .cta-box p,
    .cta-box li {
        font-size: 1rem !important;
    }
}

/* ================================================
   RESPONSIVE - SEHR KLEINE MOBILE (max-width: 400px)
   ================================================ */

@media (max-width: 400px) {
    /* Trust Badges: 1 Spalte auf sehr kleinen Screens */
    .trust-badge {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 12px 10px;
    }

    .trust-badge strong {
        font-size: 1rem;
    }

    .trust-badge p {
        font-size: 0.8rem;
    }

    /* Boxen noch kompakter */
    .contact-box,
    .price-example,
    .example-box,
    .faq-item,
    .cta-box {
        margin: 10px 0;
        padding: 10px;
    }
}

/* ================================================
   DESKTOP OPTIMIERUNG (über 1024px)
   ================================================ */

@media (min-width: 1025px) {
    /* Trust Badges bleiben 4 Spalten */
    .trust-badge {
        flex: 1 1 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }

    /* Boxen zentriert mit max-width */
    .contact-box,
    .price-example,
    .example-box,
    .cta-box {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-item {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .trust-badges,
    .contact-box,
    .cta-box {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .price-example,
    .example-box,
    .faq-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .trust-badge {
        border: 1px solid #000;
    }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */

/* Bessere Fokus-States für Boxen mit Links */
.contact-box a:focus,
.cta-box a:focus {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Screen Reader Text */
.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;
}

/* ================================================
   ANIMATIONEN (Optional)
   ================================================ */

/* Fade-in Animation für Trust Badges */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge {
    animation: fadeInUp 0.5s ease forwards;
}

.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }

/* Deaktiviere Animationen bei Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .trust-badge {
        animation: none;
    }
}

/* ================================================
   ENDE TRUST BADGES & BOXEN
   ================================================ */

/* ================================================
   END OF STYLESHEET
   ================================================ */