/* Globale Stile (aus dem Original extrahiert) */
:root {
    --chakra-colors-black: #000;
    --chakra-colors-white: #fff;
    --chakra-colors-gray-800: #3c3838;
    --chakra-fonts-heading: 'Inter', sans-serif;
    --chakra-fonts-body: 'Inter', sans-serif;
    --chakra-fontWeights-bold: 700;
    --chakra-lineHeights-base: 1.5;
    --chakra-radii-md: 0.375rem;
    --chakra-shadows-outline: 0 0 0 3px rgba(66, 153, 225, 0.6);
    --chakra-sizes-full: 100%;
    --chakra-transition-duration-normal: 200ms;
    --chakra-transition-property-common: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Raleway', 'Roboto', sans-serif;

}
body {
    position: relative;
    min-height: 100%;
    margin: 0;
}
:where(*, *:before, *:after) {
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    word-wrap: break-word;
}
a {
    background-color: transparent;
    color: inherit;
    text-decoration: inherit;
}
:where(b, strong) {
    font-weight: bold;
}
:where(button, input, optgroup, select, textarea) {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    color: inherit;
}
:where(button, [role=button]) {
    cursor: pointer;
}
:where(img, svg) {
    display: block;
}
:where(img) {
    max-width: 100%;
    height: auto;
}
:where(h1, h2, h3) {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
:where(p) {
    margin: 0;
}
body {
    font-family: var(--chakra-fonts-body);
    font-weight: 500;
}
#__next {
    height: 100%;
}
html {
    overflow-x: hidden;
}
body {
    overflow-y: scroll;
}

/* ========================================= */
/* === NEUER, STABILER HEADER === */
/* ========================================= */

.site-header-new {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px;
    width: 100%;
    box-sizing: border-box; /* Stellt sicher, dass Padding die Breite nicht beeinflusst */
}

.header-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    justify-content: flex-end; /* Alles nach rechts */
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75); /* Weiß mit 75% Transparenz */
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    backdrop-filter: blur(20px) saturate(170%);
    border-radius: 0.6em;
}

.header-right-new {
    display: flex;
    align-items: center;
    gap: 15px; /* Abstand zwischen den Elementen */
    flex-wrap: wrap; /* Erlaubt Umbruch auf kleinen Bildschirmen */
    justify-content: flex-end; /* Stellt sicher, dass bei Umbruch alles rechtsbündig bleibt */
}

.header-button-new {
    padding: 8px 16px;
    background-color: #F9D933;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 500;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
    transition: background-color 0.2s ease;
}

.header-button-new:hover {
    background-color: #e0c42d;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px; /* Kleiner Abstand zu den Buttons */
}

.lang-flag {
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.lang-flag:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.lang-flag img {
    width: 100%;
    height: 100%;
    display: block;
}

.lang-flag.active-lang {
    border: 2px solid #F9D933;
    box-shadow: 0 0 8px rgba(249, 217, 51, 0.7);
}


/* ========================================= */
/* === IHRE ALTEN STILE STARTEN HIER === */
/* ========================================= */
body, html {
    scroll-behavior: smooth;
}
body, #__next {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.simple-editor-root {
    flex-grow: 1;
}
.hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://imgproxy.gamma.app/resize/quality:80/resizing_type:fit/width:2400/https://cdn.gamma.app/qtg2pxbyj3bx4n6/generated-images/nzmAllDbifDzErvqZS5xx.png");
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: -85px; /* NEU: Zieht den Banner hinter den transparenten Header */
    padding-top: 85px; /* NEU: Stellt sicher, dass der Inhalt nicht verdeckt wird */
}
.hero-content {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 10px;
}
.hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px auto;
}
.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    color: black;
    background-color: #F9D933;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #e0c42d;
}
.leistungen {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.leistungen h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1B1B27;
}
.leistungs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.leistungs-karte {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.leistungs-karte .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #1B1B27;
}
.leistungs-karte .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.leistungs-karte h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1B1B27;
}
.leistungs-karte p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
}
.flex-service {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}
.flex-service h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1B1B27;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-karte {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #e0e0e0;
}
.service-karte h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1B1B27;
}
.service-karte p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
}
.weltkulturerbe {
    padding: 60px 20px;
    background-color: #B88E23;
    color: white;
}
.weltkulturerbe h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}
.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}
.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.accordion-arrow {
    width: 1em;
    height: 1em;
    fill: white;
    transition: transform 0.3s ease;
}
.accordion-header.active .accordion-arrow {
    transform: rotate(90deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}
.accordion-content p {
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.gallery-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery-grid img,
.gallery-flex img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.festveranstaltungen {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.festveranstaltungen h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1B1B27;
}
.veranstaltungs-liste {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.veranstaltungs-karte {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}
.veranstaltungs-karte:hover {
    transform: translateY(-5px);
}
.karte-bild img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.karte-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.karte-text h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: #1B1B27;
}
.karte-text p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
    margin-bottom: 20px;
    flex-grow: 1;
}
.button-outline {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    color: #1B1B27;
    background-color: transparent;
    border: 2px solid #1B1B27;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}
.button-outline:hover {
    background-color: #1B1B27;
    color: white;
}
@media (min-width: 768px) {
    .veranstaltungs-karte {
        flex-direction: row;
    }
    .karte-bild {
        flex-basis: 40%;
        flex-shrink: 0;
    }
    .karte-bild img {
        height: 100%;
    }
    .karte-text {
        flex-basis: 60%;
    }
}
.versprechen {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}
.versprechen h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1B1B27;
}
.versprechen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.versprechen-karte {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.versprechen-karte h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1B1B27;
}
.versprechen-karte p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
}
.buchen {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.buchen h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #1B1B27;
}
.buchen .untertitel {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.kontakt-karte {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.kontakt-karte .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #1B1B27;
}
.kontakt-karte .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.kontakt-karte h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #1B1B27;
}
.kontakt-karte p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
    flex-grow: 1;
    margin-bottom: 25px;
}
.kontakt-karte .button {
    width: 100%;
    max-width: 250px;
}
.site-footer {
    padding: 40px 20px;
    background-color: #1B1B27;
    color: #a9a9a9;
}
.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #F9D933;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.9em;
}
.footer-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0;
    border-top: 1px solid #333;
    margin-top: 20px;
    color: white;
}
.footer-details h3 {
    font-family: 'Raleway', sans-serif;
    color: #F9D933;
    margin-top: 20px;
    font-size: 1.8em;
    margin-bottom: 20px;
}
.footer-details p {
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.7;
}
.footer-details a {
    color: #F9D933;
    text-decoration: underline;
}
.footer-details a:hover {
    color: white;
}
.whatsapp-button {
    background-color: #25D366;
    color: white;
}
.whatsapp-button:hover {
    background-color: #1EBE57;
}
.telefon-karte .icon {
    color: #F9D933;
}
.whatsapp-karte .icon {
    color: #25D366;
}
.email-karte .icon {
    color: #3182CE;
}
.email-button {
    background-color: #3182CE;
    color: white;
}
.email-button:hover {
    background-color: #2b6cb0;
}
#scrollTopBtn {
    display: none; /* wird per JS gesteuert */
    position: fixed;
    bottom: 20px;
    /* Korrigierte Position, um nicht mit Chat zu überlappen */
    right: 80px; 
    z-index: 99;
    border: none;
    outline: none;
    background-color: #F9D933;
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, right 0.3s ease; /* 'right' zur Transition hinzugefügt */
    justify-content: center;
    align-items: center;
}
#scrollTopBtn svg {
    width: 20px;
    height: 20px;
    fill: black;
}
#scrollTopBtn:hover {
    background-color: #e0c42d;
}

.site-footer {
    width: 100%;
    margin-top: auto;
}
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1B1B27;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}
#cookie-banner.show {
    transform: translateY(0);
}
#cookie-banner p {
    margin: 0;
    font-size: 0.9em;
}
#cookie-banner a {
    color: #F9D933;
    text-decoration: underline;
}
#cookie-banner button {
    background-color: #F9D933;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}
@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
/* --- Stil für das Popup-Fenster (Modal) --- */
#modal-backdrop {
    display: none; /* Standardmäßig komplett unsichtbar */
    position: fixed;
    inset: 0; /* Füllt den ganzen Bildschirm */
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler Hintergrund */
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

#info-modal {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Zustand, wenn das Modal aktiv ist */
body.modal-active {
    overflow: hidden; /* Verhindert das Scrollen der Hauptseite */
}
body.modal-active #modal-backdrop {
    display: flex;
    opacity: 1;
}
body.modal-active #info-modal {
    transform: scale(1);
}

#modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5em;
    font-weight: bold;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
#modal-close-btn:hover {
    color: #333;
}

#modal-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    color: #1B1B27;
    margin-top: 0;
    margin-bottom: 15px;
}
#modal-content p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
}
#modal-content a {
    color: #2b6cb0; /* Ein schönes Blau für den Telefonlink */
    font-weight: bold;
}
/* --- Stil für das Popup-Fenster (Modal) --- */
#modal-backdrop {
    display: none; /* Standardmäßig komplett unsichtbar */
    position: fixed;
    inset: 0; /* Füllt den ganzen Bildschirm */
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler Hintergrund */
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#info-modal {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Zustand, wenn das Modal aktiv ist */
body.modal-active {
    overflow: hidden; /* Verhindert das Scrollen der Hauptseite */
}
body.modal-active #modal-backdrop {
    display: flex;
    opacity: 1;
}
body.modal-active #info-modal {
    transform: scale(1);
}

#modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5em;
    font-weight: bold;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
#modal-close-btn:hover {
    color: #333;
}

#modal-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    color: #1B1B27;
    margin-top: 0;
    margin-bottom: 15px;
}
#modal-content p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3C3939;
}
#modal-content a {
    color: #007bff; /* Ein schönes Blau für den Telefonlink */
    font-weight: bold;
}
/* --- Stile für Social Media Icons im Footer --- */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px; /* Abstand zwischen den Icons */
    margin-top: 20px; /* Abstand zum Copyright-Text */
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #4a4a4a; /* Ein dunkles Grau, das zum Footer passt */
    border-radius: 50%; /* Macht die Icons rund */
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: white; /* Weiße Icons */
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background-color: #F9D933; /* Ihr Marken-Gelb beim Hover */
    transform: translateY(-2px);
}

.social-icon:hover svg {
    fill: #1B1B27; /* Dunkle Icons auf gelbem Hintergrund */
}


/* ========================================= */
/* === NEU: RESPONSIVE ANPASSUNGEN === */
/* ========================================= */

/* Für Tablets und kleinere Desktops (bis 992px) */
@media (max-width: 992px) {
    /* Schriftgrößen anpassen für bessere Lesbarkeit */
    .hero-content h1 {
        font-size: 2.2em;
    }
    .leistungen h2, .flex-service h2, .weltkulturerbe h2, .festveranstaltungen h2, .versprechen h2, .buchen h2 {
        font-size: 2em;
    }
    .karte-text h3 {
        font-size: 1.6em;
    }
}


/* Für Mobilgeräte (bis 768px) */
@media (max-width: 768px) {
    
    /* --- KORREKTUR FÜR HEADER AUF MOBILGERÄTEN --- */
    /* Die problematische Regel ".header-container-new { flex-direction: column; }" wurde entfernt, */
    /* damit der Header horizontal bleibt und die Elemente dank "flex-wrap" im ".header-right-new" korrekt umbrechen können. */
    
    /* Sektionen-Padding reduzieren */
    .leistungen, .flex-service, .weltkulturerbe, .festveranstaltungen, .versprechen, .buchen {
        padding: 40px 15px;
    }
    
    /* Hero-Banner Text anpassen */
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-content {
        padding: 20px;
    }
    
    /* Überschriften weiter verkleinern */
    .leistungen h2, .flex-service h2, .weltkulturerbe h2, .festveranstaltungen h2, .versprechen h2, .buchen h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    /* Veranstaltungs-Karten Text zentrieren */
    .veranstaltungs-karte {
        text-align: center;
    }
    .karte-text {
        padding: 20px;
        align-items: center; /* Button zentrieren */
    }
    .button-outline {
        align-self: center; /* Sicherstellen, dass der Button zentriert ist */
    }

    /* Footer-Links untereinander anordnen */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .footer-links a {
        margin: 0;
    }
}

/* Für sehr kleine Mobilgeräte (bis 480px) */
@media (max-width: 480px) {
    /* Header-Buttons und Sprachauswahl anpassen */
    .header-right-new {
        gap: 8px; /* Weniger Abstand */
        justify-content: flex-end; /* KORREKTUR: wieder auf rechtsbündig geändert für ein sauberes Umbrechen */
    }
    .header-button-new {
        padding: 6px 10px;
        font-size: 0.9em;
    }

    /* Grid-Abstände verkleinern */
    .leistungs-grid, .service-grid, .versprechen-grid, .kontakt-grid {
        gap: 15px;
    }
    
    /* Karten-Padding reduzieren */
    .leistungs-karte, .service-karte, .versprechen-karte, .kontakt-karte {
        padding: 20px;
    }
    
    /* Korrektur für "Nach oben" Button und Chat-Button nebeneinander */
    #scrollTopBtn {
        right: 75px; /* Etwas Platz zum Chat-Button lassen */
        width: 45px;
        height: 45px;
        padding: 12px;
    }
    #chat-button {
      right: 15px; /* Sicherstellen, dass der Abstand passt */
      bottom: 15px;
    }
}