/* VARIABLES (Farbe #F4B924) */
:root[data-theme="light"] {
    --bg-color: #F8F9FA;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    
    --c-accent: #F4B924; 
    --c-accent-dark: #d69f16;
    
    --c-dark: #191A23; 
    --c-light: #FFFFFF;
    --c-light-grey: #F3F3F3;
    
    --c-line: #E2E2E2;
    --c-focus: #F4B924;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-lg: 30px;
    --radius-md: 20px;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.04);
    --shadow-hard: 0 4px 0px #1A1A1A; 
}

:root[data-theme="high-contrast"] {
    --bg-color: #000000;
    --text-main: #FFFF00;
    --text-muted: #FFFFFF;
    
    --c-accent: #FFFF00;
    --c-accent-dark: #FFFF00;
    
    --c-dark: #000000;
    --c-light: #000000;
    --c-light-grey: #000000;
    
    --c-line: #FFFF00;
    --c-focus: #FFFFFF;
    
    --shadow-soft: none;
    --shadow-hard: none;
}

/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    transition: font-size 0.2s ease, background-color 0.2s, color 0.2s;
}

h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 600; color: var(--text-main); }
.hero h1 { font-family: var(--font-body); font-weight: 400; letter-spacing: -1px; }

:focus-visible { outline: 3px solid var(--c-focus); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-accent); color: #000; }

.skip-link {
    position: absolute; left: 16px; top: -200px; z-index: 1000;
    background: var(--text-main); color: var(--bg-color);
    padding: 14px 22px; font-weight: bold; text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* UTILS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 4rem; }
.w-100 { width: 100%; }
.p-0 { padding: 0 !important; }
.text-accent { color: var(--c-accent-dark); }
.text-light { color: var(--c-light) !important; }
.text-dark { color: var(--c-dark) !important; }
.bg-accent { background-color: var(--c-accent); color: #000; }
.bg-dark { background-color: var(--c-dark); color: var(--c-light); }
.bg-light-grey { background-color: var(--c-light-grey); }
.border-y { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }

[data-theme="high-contrast"] .bg-accent { background-color: #FFFF00; color: #000; border: 1px solid #FFFF00;}
[data-theme="high-contrast"] .bg-dark, 
[data-theme="high-contrast"] .bg-light-grey,
[data-theme="high-contrast"] .elegant-box { border: 1px solid #FFFF00; box-shadow: none; }
[data-theme="high-contrast"] .text-accent { color: #FFFF00; }

/* ELEGANT BOXES */
.elegant-box {
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-soft);
    background-color: var(--c-light);
}

.navbar {
    padding: 24px 0;
    position: fixed; 
    top: 0; 
    z-index: 200;
    display: flex; 
    align-items: center; 
    width: 100%; 
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Standardmäßig ganz oben: Weiß mit 85% Deckkraft */
    background-color: rgba(255, 255, 255, .9);
    /* Optional: Ein leichter Weichzeichner (Blur) sieht bei 0.85 Deckkraft sehr modern aus */
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: -1;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Diese Klasse wird per JavaScript aktiviert, sobald man scrollt */
.navbar.scrolled::before {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.0);
}

/* Der Rest deines CSS bleibt gleich */
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.logo { 
    text-decoration: none; color: var(--text-main); display: flex; align-items: center; gap: 10px;
}
.logo-icon { font-size: 1.5rem; }
.logo-text strong { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.5px; }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 400; font-size: 1.15rem; }
.nav-links a:hover { color: var(--c-accent-dark); }

/* A11Y CONTROLS */
.a11y-controls { display: flex; gap: 10px; align-items: center; }
.a11y-controls button {
    background: transparent; color: var(--text-main);
    border: 1px solid var(--text-main); border-radius: 50px;
    width: 35px; height: 35px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.2s;
}
.a11y-controls button.btn-outline-small {
    width: auto; padding: 0 15px; font-weight: 400; gap: 5px; font-family: var(--font-body);
}
.a11y-controls button:hover { background: var(--text-main); color: var(--bg-color); }

/* BUTTONS */
.btn {
    display: inline-block; padding: 1rem 2rem; border-radius: 12px;
    font-weight: 400; font-size: 1rem; border: 1px solid var(--text-main); cursor: pointer;
    text-align: center; text-decoration: none; transition: 0.2s; font-family: var(--font-body);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-dark { background: var(--c-dark); color: var(--c-light); }
.btn-dark:not(:disabled):hover { background: var(--c-accent); color: var(--c-dark); border-color: var(--c-dark); }

[data-theme="high-contrast"] .btn-dark { background: #FFFF00; color: #000; border: 1px solid #FFFF00;}

/* HERO SECTION FULLSCREEN & VIDEO BACKGROUND */
.fullscreen-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.hero-bg-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: content; /* Video wird zugeschnitten, um den Container auszufüllen */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.85); /* Halbtransparent, damit das Video durchscheint */
    z-index: -1;
}
[data-theme="high-contrast"] .hero-overlay {
    background: rgba(0, 0, 0, 0.9);
}

.hero-grid { 
    width: 100%; 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 4rem; 
    align-items: center; 
    position: relative; 
    z-index: 1; 
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-text h1 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-text p { font-size: 1.1rem; color: var(--text-main); font-weight: 500; max-width: 90%; }

/* Gekippte Info-Box rechts */
.tilted-box {
    transform: rotate(4deg);
    justify-self: end;
    max-width: 450px;
    padding: 3rem;
    transition: transform 0.3s;
}
.tilted-box:hover { transform: rotate(0deg); }
.icon-large { font-size: 1.3rem; width: 30px; text-align: center; }

/* ZENTRIERTE HEADINGS FÜR ALLE SEKTIONEN */
.section-heading-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.section-title-wrapper h2 {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1.2;
}
.highlight-label {
    display: inline-block; padding: 6px 16px; border-radius: 8px;
    font-size: 1.1rem; font-weight: 500; border: 1px solid var(--text-main);
}
.section-heading-centered p {
    max-width: 600px; font-size: 1.05rem; color: var(--text-muted); margin: 0;
}

/* MARQUEE / CAROUSEL */
.partners-carousel { padding: 25px 0; overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee-content {
    display: inline-flex; gap: 3rem; align-items: center;
    animation: scrollMarquee 25s linear infinite;
    font-size: 1.4rem; font-family: var(--font-body); font-weight: 600; color: var(--c-dark);
}
.marquee-content .dot { font-size: 1.5rem; opacity: 0.8;}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* LAYOUT 2/3 + 1/3 */
.layout-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .layout-2-1 { grid-template-columns: 1fr; } }

/* TERMINE ALS LISTE */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.service-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    gap: 2rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    background: var(--c-light);
}
.service-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.service-list-item:has(input:checked) { 
    border-color: var(--c-accent-dark); 
    background-color: rgba(244, 185, 36, 0.05);
}

/* Angepasstes Datum inkl. Icon darüber */
.item-date { 
    padding: 15px 20px; 
    border-radius: 12px; 
    font-weight: bold; 
    font-size: 0.79rem; 
    display: flex; 
    flex-direction: column; /* Icon über Datum setzen */
    align-items: center; 
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--text-main);
    min-width: 150px;
    text-align: center;
}
.item-date i { font-size: 1.8rem; opacity: 0.9; margin-bottom: 2px;}

.item-content { flex-grow: 1; }
.item-content h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.item-content p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.visible-checkbox { 
    width: 28px; height: 28px; accent-color: var(--c-accent-dark); 
    cursor: pointer; border: 2px solid var(--text-main); border-radius: 4px;
}

@media (max-width: 768px) { 
    .service-list-item { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; } 
    .item-action { align-self: flex-end; }
}

/* CART SIDEBAR */
.cart-sidebar { position: sticky; top: 100px; }
.cart-box h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.cart-items { list-style: none; margin-bottom: 1.5rem; }
.cart-items li { margin-bottom: 0.8rem; font-size: 0.95rem; padding-left: 1.5rem; position: relative; }
.cart-items li::before { content: "✓"; position: absolute; left: 0; color: var(--c-accent-dark); font-weight: bold;}
.cart-items .empty-msg { color: var(--text-muted); }
.cart-items .empty-msg::before { display: none; }
.cart-disclaimer { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--c-line); }

/* CTA / FRAGEN */
.cta-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; position: relative; overflow: hidden;}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } .cta-graphic { display: none; } }
.cta-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem;}
textarea {
    width: 100%; padding: 1rem; border-radius: 12px;
    border: 1px solid var(--text-main); font-family: inherit; font-size: 1rem;
    background: var(--c-light); color: var(--text-main); resize: vertical;
}

/* Abstract Face Graphic */
.cta-graphic { display: flex; justify-content: center; position: relative; }
.abstract-face { position: relative; width: 150px; height: 150px; background: var(--c-dark); border-radius: 50%; }
.eyes { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); display: flex; gap: 15px; }
.eyes span { width: 15px; height: 20px; background: var(--c-light); border-radius: 50%; }
.orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 220px; height: 60px; border: 1px dashed var(--text-main); border-radius: 50%; }
.star { position: absolute; bottom: -20px; right: -20px; width: 60px; height: 60px; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

/* DOWNLOADS (Screenshot-Design) */
.downloads-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
}
.download-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    background: var(--c-light);
    overflow: hidden; 
}
.download-card::before {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 120px;
    background-image: radial-gradient(var(--text-muted) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 0;
    border-radius: 15px;
}
.card-image-box {
    width: 100px; height: 100px;
    border-radius: 25px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; margin-bottom: 2.5rem;
    position: relative; z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.bg-light-blue { background-color: #E6F0FF; }
.bg-light-pink { background-color: #FCE8EE; }
.bg-light-yellow { background-color: #FEF6E1; }

.download-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; z-index: 1; }
.download-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; z-index: 1; flex-grow: 1; }

.btn-outline-pill {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 50px;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    width: 100%;
    z-index: 1;
    background-color: var(--c-light);
}
.btn-outline-pill:hover { background: var(--c-accent); color: var(--c-light); }
@media(max-width: 900px) { .downloads-grid { grid-template-columns: 1fr; } }

/* BLOG GRID */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }


/* MAP INFO */
.map-container { overflow: hidden; }
.map-info hr { margin: 1.5rem 0; border: none; border-top: 1px solid var(--c-line); }
.clean-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.clean-list li { font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }

/* FOOTER */
.footer { padding: 2rem 0; border-top: 1px solid var(--c-line); margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-weight: 600; font-size: 1.2rem; }
.footer a { color: var(--text-main); text-decoration: none;}
.footer a:hover { color: var(--c-accent-dark); }
.footer-links { display: flex; gap: 1.5rem; }

.item-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 100%;
}

.blog-image {
    display: block;
    width: 100%;
    height: 220px;      /* oder 250px */
    object-fit: cover;
    object-position: center 30%; /* hiermit verschieben */
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-icon { 
    font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--text-main); 
}

.blog-card { display: flex; flex-direction: column; padding: 0rem; box-shadow: var(--shadow-hard);}

.blog-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.blog-content p { color: var(--text-muted); font-size: 0.95rem; }

.blog-content {

    padding: 0 1.5rem 1.5rem 1.5rem;

}

/* --- BLOG CARD UPDATES (Pfeil & Hover) --- */
.blog-card { 
    position: relative; /* Wichtig für den Pfeil */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hard), 0 15px 30px rgba(0,0,0,0.1);
}
.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Der Pfeil unten rechts */
.blog-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: rotate(-45deg);
    width: 40px;
    height: 40px;
    background-color: var(--c-light-grey);
    border: 1px solid var(--text-main);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
/* Pfeil animieren, wenn man über die Karte fährt */
.blog-card:hover .blog-arrow {
    background-color: var(--c-accent);
    transform: translateX(5px);
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}
.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--c-light);
    border: 1px solid var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}
.modal-close:hover {
    background: var(--text-main);
    color: var(--c-light);
    transform: rotate(90deg);
}
.modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .modal-gallery { grid-template-columns: 1fr; }
}
.modal-img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--text-main);
}

/* --- MAP INFO HOVER EFFEKT --- */
.map-info {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.map-info:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hard), 0 15px 30px rgba(0,0,0,0.1);
}
.map-info:hover .blog-arrow {
    background-color: var(--c-accent);
    transform: translateX(5px);
}

/* --- CUSTOM CURSOR (Alles zur Stube) --- */
.custom-cursor {
    position: fixed;
    pointer-events: none; /* Verhindert, dass der Text Klicks blockiert! */
    background-color: var(--c-accent);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9999;
    transform: translate(-50%, -150%); /* Etwas über der Maus platzieren */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    white-space: nowrap;
}
.custom-cursor.hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- FOOTER UPDATE (DUNKELBLAU) --- */
.footer-blue {
    background-color: #1A2B4C; /* Ein elegantes, sattes Dunkelblau */
    color: var(--c-light);
    border-top: none; /* Entfernt die graue Linie, falls vorhanden */
}
.footer-blue a {
    color: var(--c-light);
}
.footer-blue a:hover {
    color: var(--c-accent); /* Gelber Hover-Effekt für die Links */
}
.footer-blue .logo-img {
    /* Optional: Falls dein Logo schwarz ist, macht dieser Befehl es weiß (invertiert) */
    filter: brightness(0) invert(1); 
}

/* --- RESPONSIVE & MOBILE OPTIMIERUNGEN --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
    position: relative;
}

@media (max-width: 900px) {
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background-color: var(--c-light);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px 30px;
        margin-top: 0;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 1.5rem;
    }
    
    .nav-links.active { right: 0; }
    
    .a11y-controls {
        position: fixed;
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        background: var(--c-light);
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 999;
        display: flex;
        width: auto;
        justify-content: center;
        border: 1px solid var(--c-line);
        gap: 10px;
    }
    
    .a11y-controls button.btn-outline-small {
        width: 35px;
        height: 35px;
        padding: 0;
        border-radius: 50px;
        font-size: 0;
    }
    .a11y-controls button.btn-outline-small i {
        font-size: 1rem;
        margin: 0;
    }
    
    .tilted-box {
        transform: rotate(0deg);
        padding: 2rem;
    }
    .hero-grid {
        gap: 2rem;
    }
    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    /* .mobile-spacing{ padding: 0 15px; } */
    body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 20px;
    }
    .elegant-box {
        padding: 1.5rem;
    }
    .section {
        padding: 60px 12px;
    }
    .footer-inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Checklist in Stube Modal */
    #stube-modal .clean-list li {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    #stube-modal .clean-list li i {
        margin-top: 4px;
    }
}