/* --- Allgemeine Stile für die Diensstleistungsseite --- */
body {
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container-Größe */
.container {
    width: 80%;
    margin: 0 auto;
}

/* --- Header und Navigationsleiste --- */
header {
    background-color: transparent; /* Startet transparent */
    color: #fff;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Zentriert Menü und Logo */
    height: 190px;
    transition: background-color 0.3s ease; /* Übergang für den Hintergrundwechsel */
}

/* --- Globale Navigationseinstellungen --- */
nav {
    display: flex; /* Desktop-Ansicht */
    justify-content: center;
    align-items: center;
    /* Weitere Stile hier */
}

/* Zusätzlicher Puffer unter den Menüpunkten */
header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Vergrößere den unteren Rand */
    padding-bottom: 20px; /* Fügt unten Puffer hinzu */
}

/* Hintergrundfarbe beim Scrollen */
header.scrolled {
    background-color: rgba(0, 0, 0, 1);
}

/* Navigationsleiste */
header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #00FF7F;
}

/* Stile für den aktiven Link */
nav ul li a.active {
    color: #00FF7F; /* Pastellgrün für die aktive Seite */
    font-weight: bold; /* Optional: Fettdruck für aktive Seite */
}

/* --- Logo im Header --- */
header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px; /* Füge hier den Puffer über dem Logo ein */
}

header .logo img {
    height: 150px;
    width: auto;
}

/* --- Hamburger Menü nur für Mobile --- */
.menu-icon {
    display: none;
}

@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        height: 80px;
    }

    .menu-icon {
        display: block;
        font-size: 2rem;
        cursor: pointer;
    }

    nav {
        display: none;
    }

    header.open nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #121212;
    }
}

/* --- Slogan Sektion --- */
.slogan-section {
    margin-top: 360px;
    margin-bottom: 150px !important;  /* Abstand unterhalb des Slogans */
    text-align: center;
}

.slogan {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    color: #fff; /* Standardfarbe für den Text */
}

/* Highlight für CELEBRIA */
.slogan .highlight {
    color: #00FF7F; /* Grün für das Wort "CELEBRIA" */
}

/* Blinker-Cursor */
#cursor {
    font-weight: bold;
    font-size: 3.5rem;
    color: #00FF7F;
    animation: blink 0.7s infinite;
}

/* Blinker-Effekt */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Modul Section */
.modul-section {
    background-color: transparent;
    padding: 40px 0;
    text-align: center;
}

.modul-container {
    width: 80%;
    margin: 0 auto;
    color: #fff;
}

.modul-header h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 10px auto;
    text-align: center;
}

.untertitel {
    font-size: 1rem;
    color: #aaa;
    margin: 0 auto 20px auto;
    text-align: center;
    width: 100%;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.toggle-button {
    background-color: #137869;
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.toggle-button:focus {
    outline: none;
}

.modul-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: center;
    margin-top: 15px;
}

.modul-text.show {
    max-height: 100px;
}

.modul-text p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

/* Sektion für den Firmenfeier-Weg */
/* Sektion für den Firmenfeier-Weg */
.firmenfeier-weg {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

/* Elemente auf dem Weg */
.weg-element {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
}

/* Abwechselnde Inhalte links und rechts */
.content-left, .content-right {
    width: 45%;
    padding: 20px;
}

.content-left {
    text-align: left; /* Rechtsbündig für linksseitigen Content */
}

.content-right {
    text-align: right; /* Linksbündig für rechtsseitigen Content */
}

/* Linksseitiger Inhalt */
.content-left h3 {
    text-align: left;
}

/* Rechtsseitiger Inhalt */
.content-right h3 {
    text-align: right;
}

/* Bildgrößenbeschränkung */
.content-left img, .content-right img {
    width: 100%;
    height: auto;
    max-width: 350px; /* Bildgröße begrenzen */
}

/* Liste für den rechten Content */
.content-right ul {
    list-style-position: inside;
    padding-right: 0; /* Entferne unnötiges Padding */
    margin-left: auto; /* Verschiebe die Liste nach links */
    text-align: right; /* Die Punkte werden rechtsbündig gesetzt */
}

/* Stil für die Aufzählungspunkte */
.weg-list {
    list-style-type: disc; /* Aufzählungspunkte */
    padding-left: 0px; /* Kein zusätzlicher Abstand zum linken Rand */
    color: #fff; /* Farbe des Textes */
    font-size: 1rem; /* Schriftgröße */
    margin-left: 20px; /* Setze den linken Abstand gleich der Überschrift */
}

.weg-list li {
    margin-bottom: 10px; /* Abstand zwischen den Aufzählungspunkten */
}

/* Überschrift Stil */
h3 {
    font-size: 1.8rem;
    color: #00FF7F; /* Highlight-Farbe für Überschriften */
    margin-left: 20px; /* Setze den linken Abstand gleich der Aufzählung */
}

h3 i {
    color: #ffffff;
    margin-right: 30px; /* Abstand zwischen Icon und Überschrift */
}

.weg-element:nth-child(4) {
    margin-top: 100px; /* Oder eine gewünschte Pixelgröße */
}

.weg-element:last-child {
    margin-bottom: 10px; /* Reduziere diesen Wert nach deinen Wünschen */
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .weg-element {
        flex-direction: column;
    }

    .content-left, .content-right {
        text-align: center;
        width: 100%;
    }

    /* Für mobile Geräte die Bilder anpassen */
    .content-left img, .content-right img {
        max-width: 100%; /* Bilder auf voller Breite */
    }

    .weg-list, h3 {
        margin-left: 0; /* Zentriere die Aufzählung und Überschrift */
    }
}

/* Sektion mit Icons (ohne Bild) */
.icons-only-section {
    position: relative;
    text-align: center;
    padding: 50px 0;
    width: 80%;  /* Breite auf 80% begrenzt */
    margin: 0 auto;
}

.icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid #00FF7F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.icon i {
    font-size: 1.5rem;
    color: #00FF7F;
}

.icon-idea {
    margin-top: 20px;
}

.icon-plan {
    margin-top: 40px;
}

.icon-organize {
    margin-top: 60px;
}

.icon-celebration {
    margin-top: 80px;
}

/* Hauptcontainer für Flex-Anordnung über gesamte Breite */
.intro-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Breite über gesamten Bildschirm */
    padding: 50px;
    box-sizing: border-box;
    background-color: transparent; /* Hintergrund transparent */
    max-width: 1200px;
    margin: 0 auto; /* Zentriert den gesamten Inhalt */
}

/* Einleitungstext */
.content-left {
    width: 50%;
}

.content-left h2 {
    font-size: 2rem;
    color: #38b6b6;
}

.content-left p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

/* Container für die Kreise */
.circle-container {
    position: relative;
    width: 50%; /* Breite des Containers für die Kreise */
    height: 500px; /* Höhe des Containers */
    margin: 0 auto;
}

/* Kreise mit absoluter Positionierung und fixierten Werten */
.circle {
    width: 150px; /* Vergrößerte Kreise */
    height: 150px;
    border: 2px solid #38b6b6;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #38b6b6; /* Symbolfarbe */
    font-size: 40px;
    background-color: transparent;
}

/* Fixierte Positionierung der Kreise */
.circle-1 {
    top: 20%; /* Abstand von oben */
    left: 90%;
    transform: translateX(-50%);
}

.circle-2 {
    top: 40%; /* Etwas tiefer */
    left: 30%; /* Etwas weiter links */
}

.circle-3 {
    top: 40%; 
    left: 85%; /* Etwas weiter rechts */
}

.circle-4 {
    top: 60%; /* Unten */
    left: 90%;
    transform: translateX(-50%);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .intro-section {
        flex-direction: column;
        align-items: center;
    }

    .content-left, .content-right {
        width: 100%;
        text-align: center;
    }

    .circle-container {
        width: 100%;
        height: 400px;
    }

    .circle {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
}

/* Hauptcontainer für Service und Technik */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'); /* Font Awesome einbinden */

/* Grundlegende Tab-Section Stile */
.tab-section {
  text-align: center;
  background-color: #111;
  padding: 40px 0;
}

h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 70px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-link {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  cursor: pointer;
  font-size: 1.5rem;
}

.tab-link.active {
  background-color: white;
  color: #111;
  border: 2px solid white;
}

/* Für den Bereich der Icons */
.tab-content {
  background-color: white; /* Hintergrund für den Bereich der Icons */
  color: black; /* Textfarbe */
  padding: 20px 0;
}

.icon-container {
  display: flex;
  justify-content: space-around; /* Icons gleichmäßig verteilen */
  flex-wrap: wrap; /* Bricht die Icons um, wenn sie den Platz überschreiten */
  max-width: 1200px; /* Maximale Breite der Icon-Container */
  margin: 0 auto; /* Zentrieren des Containers */
  flex-direction: row;
}

.icon-item {
  text-align: center;
  margin: 10px;
  flex: 0 1 20%; /* Flex-Wachstumsrate und Mindestbreite auf 20% setzen */
}

.icon-item i {
  font-size: 3rem; /* Größe der Icons */
  margin-bottom: 10px;
  color: black;
}

.icon-item p {
  color: black;
  font-size: 1.2rem;
}

/* Entferne den unteren Abstand der Service-und-Technik-Sektion */
.tab-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Passe den oberen Rand der neuen Dienstleistungs-Sektion an */
.services-section {
  background-color: white;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 40px;
  text-align: center;
}

/* Hauptdienstleistungen Sektion */
/* --- Hauptinhalt Dienstleistungen --- */
h1, h2, h3 {
    color: #fff;
}

.services-section {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}

.services-section h2 {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  margin: 20px auto;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.service-title {
  width: 30%;
  padding: 20px;
  border: 2px solid black;
  text-align: center;
}

.service-title h3 {
  color: black;
  font-size: 1.5rem;
  margin: 0;
}

.service-description {
  width: 60%;
  padding: 20px;
  text-align: left;
  color: black;
}

/* Dienstleistungs CTA-Button */
.service-cta-button {
    font-size: 1rem;
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid black;
    border-radius: 5px;
    display: inline-block;
    margin: 0 auto; /* Zentriert den Button */
    text-align: center;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #d35353;
    width: 100%;
    box-sizing: border-box;
}

.cta-container {
    max-width: 1400px; /* Anpassung für mittigen Inhalt */
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px; /* Abstand nach innen auf beiden Seiten */
}

.cta-text {
    flex: 1;
    text-align: left;
    padding-left: 250px; /* Text weiter nach innen rücken */
}

.cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
}

.cta-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-top: 10px;
}

.cta-button {
    font-size: 1rem;
    background-color: white;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 250px; /* Button weiter nach innen rücken */
}

/* Footer Styles */
footer {
    background-color: #000; /* Schwarzer Hintergrund */
    color: #fff; /* Weiße Schriftfarbe */
    padding: 50px 0;
    text-align: center; /* Zentriere den gesamten Footer */
    font-family: 'Poppins', sans-serif; /* Schriftart */
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Spalten gleichmäßig verteilen */
    max-width: 1200px;
    margin: 0 auto; /* Zentriere den Footer Container */
    flex-wrap: wrap; /* Für responsive Layouts */
}

.footer-column {
    width: 30%; /* Breite jeder Spalte gleichmäßig */
    text-align: center; /* zentral ausgerichtet für die Unterpunkte */
    padding: 0 15px;
}

.footer-column h3 {
    text-align: center; /* Zentriere die Überschrift */
    margin-bottom: 20px; /* Platz unter der Überschrift */
    font-size: 1.5rem; /* Schriftgröße für Überschriften */
}

.footer-column ul {
    padding-left: 0; /* Verhindert zusätzlichen Abstand */
    list-style: none; /* Entfernt Aufzählungspunkte */
}

.footer-column ul li {
    margin-bottom: 10px; /* Platz zwischen den einzelnen Links */
}

.footer-column ul li a {
    color: #fff; /* Links in weißer Farbe */
    text-decoration: none; /* Keine Unterstreichung bei Links */
    font-size: 1rem; /* Schriftgröße für Links */
}

.footer-column ul li a:hover {
    color: #00FF7F; /* Grüne Farbe beim Hover */
}

/* Copyright section */
.footer-bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc; /* Leicht graue Schriftfarbe für Copyright */
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stellt Spalten untereinander dar */
        text-align: center; /* Zentriere Text für kleinere Bildschirme */
    }

    .footer-column {
        width: 100%; /* Volle Breite für jede Spalte auf kleineren Bildschirmen */
        margin-bottom: 20px; /* Abstand zwischen den Spalten */
    }

    .footer-column h3 {
        text-align: center; /* Überschrift zentrieren */
    }
}

/* --- Maus-Ring --- */
#mouse-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 3px solid #00FF7F;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0s;
    z-index: 9999;
}

#mouse-ring.smooth {
    transition: transform 0.15s ease-out;
}

/* --- Globale Anpassungen für mobile Geräte --- */
@media (max-width: 768px) {
    /* Grundlegende Einstellungen für Mobile */
    body {
        overflow-x: hidden; /* Verhindert das horizontale Scrollen */
    }

    /* Entferne den Maus-Ring auf mobilen Geräten */
    #mouse-ring {
        display: none; /* Verstecke den Maus-Ring auf kleinen Bildschirmen */
    }

    /* Breitenbegrenzungen sicherstellen */
    * {
        max-width: 100%;
        box-sizing: border-box; /* Stellt sicher, dass Padding/Borders zur Gesamtgröße zählen */
    }

    /* --- Header-Anpassungen für mobile Geräte --- */
@media (max-width: 768px) {
    /* Header fixiert mit schwarzem Balken */
    header {
        background-color: #121212 !important; /* Schwarzer Hintergrund für den Header */
        padding: 0 !important;
        margin: 0 !important;
        height: 80px !important; /* Fixierte Höhe für den Header */
        max-height: 80px;
        display: flex;
        justify-content: space-between; /* Logo links, Menü rechts */
        align-items: center;
        position: fixed !important; /* Header bleibt fixiert */
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    /* Container für Logo und Menü-Icon */
    header .container {
        background-color: transparent !important;
        padding: 0 20px !important; /* Abstände links und rechts */
        margin: 0 !important;
        height: 80px !important; /* Fixierte Höhe für den Container */
        display: flex;
        justify-content: space-between; /* Logo links, Menü rechts */
        align-items: center;
        width: 100%;
        z-index: 1002; /* Höherer Z-Index, um sicherzustellen, dass Logo und Icon sichtbar bleiben */
    }

    /* Logo links ausrichten und proportional skalieren */
    .logo img {
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 10px !important; /* Platz links für das Logo */
        width: auto !important; /* Proportionale Breite */
        height: 60px !important; /* Festgelegte Höhe des Logos, passend zum Header */
        display: block;
        z-index: 1003 !important; /* Höherer Z-Index für das Logo, damit es nicht verschwindet */
        position: relative; /* Logo bleibt relativ zum Header */
    }

    /* Menü-Icon rechts ausrichten */
    .menu-icon {
        font-size: 2.5rem;
        cursor: pointer;
        margin-right: 10px !important; /* Platz rechts für das Menü */
        background-color: transparent !important;
        z-index: 1002; /* Sicherstellen, dass das Menü-Icon sichtbar bleibt */
    }

    /* Navigation standardmäßig unsichtbar */
    nav {
        display: none !important;
    }

    /* Menü geöffnet: Header bleibt fixiert und Navigation sichtbar */
    header.open {
        background-color: #121212 !important;
        position: fixed; /* Der Header wird fixiert, wenn das Menü geöffnet ist */
        width: 100%;
        height: 100vh;
        z-index: 1000;
    }

    /* Navigation sichtbar bei geöffnetem Menü */
    header.open nav {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Zentriert den Text im Menü */
        background-color: #121212 !important;
        width: 100%;
        height: 100vh; /* Nimmt die gesamte Höhe des Bildschirms ein */
        position: absolute;
        top: 0;
        z-index: 999;
        overflow: hidden; /* Verhindert das Scrollen im Menü */
    }

    /* Navigation Links Styling */
    header.open nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Vertikale Zentrierung der Links */
        align-items: center; /* Horizontale Zentrierung */
        text-align: center;
        width: 100%;
        height: 100%; /* Nimmt die gesamte Höhe des Menüs ein */
        padding: 0; /* Entferne unnötiges Padding */
        margin: 0; /* Entferne unnötige Margins */
    }

    header.open nav ul li {
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: center; /* Zentriert die Links horizontal */
    }

    header.open nav ul li a {
        color: #fff;
        font-size: 1.5rem;
        text-decoration: none;
        padding: 15px 0;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 300px; /* Optional: Begrenze die Breite der Links */
    }

    /* Scrollen verhindern, wenn das Menü geöffnet ist */
    body.menu-open {
        overflow: hidden; /* Deaktiviert das Scrollen */
    }
}

/* --- Slogan Sektion am Anfang --- */
@media (max-width: 768px) {
    .slogan-section {
        margin-top: 35% !important; /* Entfernt die vorherige margin-top Regel */
        margin-bottom: 15% !important; /* Entfernt die vorherige margin-top Regel */
        width: 100vw;
        text-align: center;
        padding: 5px 0;
    }

    .slogan {
        font-size: 2rem;
    }
}

/* --- Modul-Sektion für Handyansicht anpassen --- */
@media (max-width: 768px) {
    .modul-header .toggle-button {
        display: none; /* Plus-Button ausblenden */
    }

    .modul-text {
        display: none !important; /* Text komplett ausblenden in der Handyansicht */
    }

    .modul-header h2 {
        font-size: 1.5rem;
    }

    .modul-container {
        text-align: left;
        padding: 20px;
    }
}

/* Firmenweg-Sektion für Handyansicht */
@media (max-width: 768px) {
    .firmenfeier-weg .weg-element {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .firmenfeier-weg .weg-element:nth-child(1) .content-left {
        order: 1; /* Bild zuerst */
    }

    .firmenfeier-weg .weg-element:nth-child(1) .content-right {
        order: 2; /* Text danach */
    }

    .firmenfeier-weg .weg-element:nth-child(2) {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .firmenfeier-weg .weg-element:nth-child(2) .content-right {
        order: 1; /* Bild zuerst */
    }

    .firmenfeier-weg .weg-element:nth-child(2) .content-left {
        order: 2; /* Text danach */
    }

    .firmenfeier-weg .weg-element:nth-child(3) {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .firmenfeier-weg .weg-element:nth-child(3) .content-left {
        order: 1; /* Bild zuerst */
    }

    .firmenfeier-weg .weg-element:nth-child(3) .content-right {
        order: 2; /* Text danach */
    }

    .firmenfeier-weg .weg-element:nth-child(4) {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .firmenfeier-weg .weg-element:nth-child(4) .content-right {
        order: 1; /* Bild zuerst */
    }

    .firmenfeier-weg .weg-element:nth-child(4) .content-left {
        order: 2; /* Text danach */
    }
}

    .firmenfeier-weg .weg-element .content-left,
    .firmenfeier-weg .weg-element .content-right {
        width: 100%;
        text-align: center;
    }

    .firmenfeier-weg .weg-element h3 {
        margin: 10px 0;
        font-size: 1.5rem;
        text-align: center;
    }

    .firmenfeier-weg .weg-element .weg-list {
        padding-left: 0;
        text-align: center;
    }

    /* Spezifische Korrektur für alle Aufzählungspunkte */
    .firmenfeier-weg .weg-element .weg-list li {
        list-style-position: inside; /* Aufzählungspunkte innerhalb zentrieren */
        margin: 5px 0;
    }
}


/* --- Kreise Sektion (Icons) in der Intro-Section --- */
@media (max-width: 768px) {
    .intro-section .content-right {
        display: none; /* Versteckt nur den rechten Inhalt in der Intro-Section auf Mobilgeräten */
    }

    .intro-section .circle-container {
        display: none; /* Versteckt die Kreise nur in der Intro-Section auf Mobilgeräten */
    }
}

/* Überschrift in der Tab-Sektion vergrößern */
@media (max-width: 768px) {
    .tab-section h2 {
        font-size: 2rem; /* Schriftgröße für die Überschrift anpassen */
        font-weight: bold; /* Optional: Schrift fetter darstellen */
        text-align: center; /* Zentrieren der Überschrift, falls noch nicht */
        margin-bottom: 20px; /* Optional: Abstand nach unten hinzufügen */
    }
}

@media (max-width: 768px) {
    .tab-section {
        padding: 0 !important; /* Entfernt das Padding für die mobile Ansicht */
    }
}

/* Tab Sektion Icon anordnen */
@media (max-width: 768px) {
    .tab-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .icon-item {
        width: 45%; /* Maximal zwei Symbole nebeneinander */
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        text-align: center;
    }

    .icon-item i {
        font-size: 2rem; /* Symbolgröße anpassen */
        margin-bottom: 5px;
    }

    .icon-item p {
        font-size: 1rem;
        line-height: 1.2;
        hyphens: auto; /* Automatischer Bindestrich-Umbruch für lange Wörter */
        word-wrap: break-word;
    }
}


/* --- Dienstleistungssektion --- */
@media (max-width: 768px) {
    .services-section {
        padding: 20px 15px; /* Fügt links und rechts 15px Padding hinzu */
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .service-title {
        width: auto;
        text-align: center;
        margin-bottom: 10px;
        border: 1px solid black;
    }

    .service-description {
        width: auto;
        text-align: left;
        padding: 0 15px; /* Zusätzlicher seitlicher Abstand für die Texte */
    }

    h2, h3, p, .cta-button {
        font-size: 1rem;
    }
}

    /* --- Anpassung der Call-to-Action Sektion für mobile Geräte --- */
@media (max-width: 768px) {
    /* Übergeordneter Container für Text und Button */
    .cta-section {
        display: flex;
        flex-direction: column; /* Ordnet Text und Button vertikal an */
        align-items: center; /* Zentriert den Inhalt horizontal */
        justify-content: center; /* Vertikale Zentrierung */
        width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    /* Entferne den Rahmen und passe den Stil des Textes an */
    .cta-text {
        width: 100%; /* Text nimmt die volle Breite des Containers ein */
        max-width: 100%; /* Keine Begrenzung der Breite */
        text-align: center; /* Text innerhalb des Containers zentrieren */
        margin: 0 auto 20px auto; /* Zentriert den Text */
        padding: 0; /* Entfernt den Rahmen und unnötiges Padding */
        border: none; /* Entfernt den Rahmen */
        box-shadow: none; /* Entfernt eventuelle Schatten */
    }

    /* Button weiterhin mittig */
    .cta-button {
        display: inline-block;
        width: auto; /* Passt sich der Textbreite an */
        max-width: 400px; /* Maximale Breite für den Button */
        padding: 10px 20px;
        margin: 0 auto; /* Button bleibt mittig */
        border: 2px solid black;
        border-radius: 5px;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        color: black;
        text-decoration: none;
    }
}