@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');


/* Entfernt den horizontalen Scrollbalken */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: visible; /* Verhindert horizontalen Scrollbalken */
    overflow-y: auto; /* Erzwinge vertikales Scrollen */
}

header {
    position: relative; /* Verhindert, dass der Header das Sticky-Element blockiert */
    overflow: visible; /* Kein versteckter Inhalt */
    z-index: auto; /* Standardwert */
}

/* Cookie-Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Füllt die gesamte Breite der Webseite */
    background-color: #333; /* Dunkler Hintergrund */
    color: #fff; /* Weißer Text */
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2); /* Schatten nach oben */
    z-index: 1000;
    display: flex; /* Flexbox für horizontales Layout */
    justify-content: space-between; /* Platz zwischen Text und Buttons */
    align-items: center; /* Vertikale Ausrichtung */
    font-family: Arial, sans-serif;
    line-height: 1.4;
    visibility: hidden; /* Unsichtbar, bis durch JS sichtbar gemacht */
    opacity: 0; /* Unsichtbar */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    gap: 20px; /* Abstand zwischen Text und Buttons */
    box-sizing: border-box; /* Padding und Breite korrekt berechnen */
}

.cookie-banner.visible {
    visibility: visible;
    opacity: 1; /* Sichtbar */
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1; /* Text nimmt den maximal verfügbaren Platz ein */
    text-align: left; /* Links ausgerichtet */
}

.cookie-banner a {
    color: #406b5a; /* Blaue Links */
    text-decoration: none;
    font-weight: bold;
}

.cookie-banner a:hover {
    text-decoration: underline; /* Unterstrichen bei Hover */
}

/* Aktionen */
.cookie-actions {
    display: flex; /* Buttons in einer Reihe */
    gap: 10px; /* Abstand zwischen Buttons */
    flex-shrink: 0; /* Buttons werden nicht verkleinert */
}

.cookie-actions button {
    padding: 10px 15px; /* Einheitliche Größe */
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap; /* Verhindert Zeilenumbruch im Button */
    text-align: center;
    min-width: 100px; /* Mindestbreite für die Buttons */
}

.cookie-actions button#accept-cookies {
    background-color: #406b5a; /* Blau */
    color: #fff;
}

.cookie-actions button#accept-cookies:hover {
    background-color: #005bb5; /* Dunkleres Blau bei Hover */
}

.cookie-actions button#decline-cookies {
    background-color: #555; /* Grau */
    color: #fff;
}

.cookie-actions button#decline-cookies:hover {
    background-color: #005bb5; /* Dunkleres Grau bei Hover */
}

/* Responsive Design für kleine Bildschirme */
@media (max-width: 768px) {
    .cookie-banner {
        flex-wrap: wrap; /* Inhalte umbrechen */
        text-align: center; /* Zentrierter Text */
    }

    .cookie-actions {
        justify-content: flex-start; /* Buttons linksbündig */
        width: auto; /* Buttons nehmen nur den benötigten Platz ein */
        margin-top: 10px; /* Abstand zum Text */
    }
}

/* Global Styles */
body {
    font-family: 'Open Sans', semibold;
    background-color: #f9f9f9;
    color: #333;
    overflow-y: scroll; /* Scrollen aktivieren */
    line-height: 1.8;
}

/* Navigationsleiste */
.navbar {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Zentriert die Navigation */
    background-color: #ffffff; /* Heller Hintergrund */
    height: 44px; /* Dünne Navbar-Höhe */
    padding: 0 20px; /* Abstand links und rechts */
    position: sticky; /* Sticky-Position aktivieren */
    top: 0; /* Haftet oben am Bildschirm */
    z-index: 1050; /* Sicherstellen, dass die Navbar oben bleibt */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Dezenter Schatten */
    box-sizing: border-box;
    font-size: 14px;
}


/* Responsive Navigation */
.nav-links.responsive {
    display: flex;
    flex-direction: column; /* Links untereinander anordnen */
    position: absolute;
    top: 44px; /* Direkt unter der Navbar */
    left: 50%; /* Zentriere das Menü relativ zur Seite */
    transform: translateX(-50%); /* Korrigiere die Zentrierung */
    background-color: #ffffff; /* Gleiche Hintergrundfarbe wie die Navbar */
    padding: 20px;
    width: 90%; /* Menü nimmt 90% der Breite ein */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    z-index: 1050;
    gap: 10px; /* Abstand zwischen den Links */
    text-align: center; /* Zentrierter Text */
}

.navbar .logo {
    position: absolute;
    left: 20px; /* Logo bleibt links */
}

.navbar .logo img {
    max-height: 30px; /* Logo kleiner machen */
    width: auto;
    display: block; /* Entfernt zusätzliche Abstände von inline-Elementen */
    margin: 0; /* Kein zusätzlicher Rand */
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex; /* Links nebeneinander */
    gap: 15px; /* Abstand zwischen den Links */
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000; /* Schwarzer Text */
    font-weight: 400; /* Normal statt fett für Minimalismus */
    font-size: 14px; /* Kleinere Schriftgröße */
    padding: 5px 10px; /* Weniger Platz um die Links */
    transition: color 0.3s ease;
    text-align: center;
    font-family: 'Open Sans', semibold;
}

.nav-links a:hover {
    color: #094029; /* Grüne Farbe beim Hover */
    transform: scale(1.1); /* Leichtes Vergrößern */
    transition: color 0.3s ease, transform 0.3s ease; /* Sanfte Übergänge */
}

/* Hamburger-Icon Styling */
.hamburger {
    display: none; /* Standardmäßig ausgeblendet */
    cursor: pointer;
    flex-direction: column; /* Stapelt die Linien vertikal */
    justify-content: space-around;
    height: 20px;
    width: 25px;
    z-index: 1100; /* Über der Navigation */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000; /* Schwarze Linien */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation für kleine Bildschirme */
.nav-links.responsive {
    display: flex; /* Vertikale Liste */
    flex-direction: column;
    position: absolute;
    top: 44px; /* Direkt unter der Navbar */
    right: 0;
    background-color: #ffffff; /* Gleiche Hintergrundfarbe wie die Navbar */
    padding: 20px;
    width: 100%; /* Menü füllt die Breite */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    z-index: 1050;
    gap: 10px; /* Abstand zwischen Links */
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Standardmäßig versteckt */
        flex-direction: column;
        position: absolute;
        top: 44px; /* Direkt unter der Navbar */
        right: 0; /* Rechts ausgerichtet */
        background-color: #ffffff; /* Gleiche Hintergrundfarbe wie die Navbar */
        padding: 20px;
        width: 100%; /* Menü füllt die Breite */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
        z-index: 1050;
        gap: 10px; /* Abstand zwischen Links */
    }

    .hamburger {
        display: flex; /* Hamburger-Icon sichtbar */
        position: absolute;
        top: 10px;
        right: 20px; /* Rechtsbündig innerhalb der Navbar */
    }

    /* Hamburger-Icon Animation */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Navigation einblenden */
    .nav-links.responsive {
        display: flex;
    }
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* Passt sich automatisch der Bildhöhe an */
}

.slides {
    display: flex;
    transition: transform 1s ease;
}

.slides img {
    width: 100%; /* Bildbreite auf 100% gesetzt */
    height: auto;
    display: block; /* Verhindert Leerzeichen um Bilder */
}

/* Slider-Buttons */
.slider-controls button {
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10; /* Stellt sicher, dass die Buttons über dem Bild sind */
}

.slider-controls .prev {
    left: 10px;
}

.slider-controls .next {
    right: 10px;
}

/* Mobile Ansicht für den Slider */
@media (max-width: 768px) {
    .slider {
        height: 50vh; /* Mittlere Höhe von 50% der Bildschirmhöhe */
    }

    .slides img {
        height: 50vh; /* Bilder passen sich der neuen Slider-Höhe an */
        object-fit: cover; /* Zuschneiden der Bilder für ein besseres Aussehen */
    }

    .slider-controls button {
        padding: 8px 16px; /* Kleinere Buttons */
        font-size: 14px; /* Kleinere Schrift */
    }
}

.about-image figure {
    margin: 0;
    text-align: center;
}

.about-image img {
    margin-bottom: 10px; /* Abstand zwischen Bild und Beschriftung */
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-image figcaption {
    font-size: 14px;
    font-style: italic;
    color: #666; /* Dezente Schriftfarbe */
    margin-top: 5px;
}

figcaption {
    text-align: center; /* Zentriert den Text */
}

/* Projekte */
.projects {
    text-align: center;
    padding: 50px 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Kacheln nebeneinander */
    gap: 20px;
    width: 100%; /* Breite auf 100% gesetzt */
    margin: 0 auto;
}

.project {
    background-color: #fff;
    border-radius: 10px;
    height: 400px; /* Höhe für die Kacheln */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}

.project img {
    width: 100%; /* Breite des Bildes auf 100% gesetzt */
    height: 100%;
    object-fit: cover; /* Verhindert Verzerrungen der Bilder */
    border-radius: 10px;
}

/* Kleiner Bild-Slider */
.small-slider {
    position: relative;
    overflow: hidden; /* Überflüssige Inhalte außerhalb des Sliders ausblenden */
    width: 100%; /* Slider füllt die gesamte Breite */
    height: 400px; /* Höhe des Sliders */
    margin-top: 50px;
    margin-bottom: 50px;
}

.small-slider .slides {
    display: flex; /* Bilder nebeneinander anordnen */
    animation: scrollSlider 10s linear infinite; /* Kontinuierliche Bewegung */
    width: max-content; /* Dynamische Breite, basierend auf der Anzahl der Bilder */
    height: 100%; /* Höhe der Slider-Bilder */
}

.small-slider .slides img {
    width: 1920px; /* Feste Breite für Bilder */
    height: 400px; /* Feste Höhe für Bilder */
    object-fit: cover; /* Verhindert Verzerrungen */
    margin: 0; /* Entfernt unnötige Abstände */
    display: block; /* Stellt sicher, dass die Bilder Block-Elemente sind */
}


/* Keyframes für kontinuierliche Bewegung */
@keyframes scrollSlider {
    0% {
        transform: translateX(0); /* Startposition */
    }
    100% {
        transform: translateX(-1920px); /* Verschiebung um die Breite eines Bildes */
    }
}

/* Kontaktformular */

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #406b5a;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #28a745; /* Dunkleres Grau bei Hover */
    color: #fff;
}

/* Zentrierter Text im Formular */
.content p {
    text-align: center;
    font-size: 18px;
    color: #555; /* Dezentes Grau für angenehmes Lesen */
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Kontaktformular Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto; /* Zentriert das Formular */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #28a745; /* Grün für Fokus */
}

/* Grüner Absenden-Button */
.contact-form .submit-button {
    display: inline-block;
    width: 100%; /* Füllt die Breite aus */
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #406b5a; /* Grün */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .submit-button:hover {
    background-color: #218838; /* Dunkleres Grün bei Hover */
    transform: scale(1.02); /* Leichtes Vergrößern */
}

.center-text {
    text-align: center !important; /* Erzwingt die Zentrierung */
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-actions {
    display: flex;
    flex-direction: column; /* Stellt die Elemente vertikal übereinander */
    align-items: center;    /* Zentriert die Elemente horizontal */
    margin-top: 20px;
}

.g-recaptcha {
    margin-bottom: 15px; /* Abstand zwischen reCAPTCHA und Button */
}

.submit-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


/* Entfernt ungewollte Abstände und Rahmen */
.small-slider + * {
    margin: 0; /* Entfernt äußere Abstände */
    padding: 0; /* Entfernt innere Abstände */
    border: none; /* Entfernt eventuell vorhandene Rahmen */
    background: none; /* Entfernt Hintergrundfarben */
}

section {
    background: none; /* Entfernt Hintergrundfarbe der Sektion */
}

/* Pop-up Styling */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f0f0; /* Grauer Hintergrund */
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Pop-up Styling */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f0f0; /* Grauer Hintergrund */
    border: 1px solid #ccc;
    padding: 30px; /* Mehr Padding für ein angenehmes Layout */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px; /* Maximale Breite */
    width: 90%; /* Passt sich dem Bildschirm an */
    box-sizing: border-box; /* Verhindert, dass Padding die Breite beeinflusst */
    border-radius: 15px; /* Abgerundete Ecken */
}

/* Button Styling */
.popup button {
    margin-top: 15px;
    padding: 12px 24px;
    border: none;
    background-color: #28a745; /* Gleiche Farbe wie der Absenden-Button */
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.popup button:hover {
    background-color: #218838; /* Dunklerer Grünton beim Hover */
}

/* Pop-up verstecken */
.hidden {
    display: none;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .popup {
        padding: 20px; /* Weniger Padding auf kleineren Bildschirmen */
        max-width: 90%; /* Breiter für kleinere Geräte */
    }

    .popup h2 {
        font-size: 22px; /* Leicht kleinere Überschrift */
    }

    .popup p {
        font-size: 16px; /* Kleinere Schriftgröße */
        line-height: 1.5; /* Mehr Zeilenabstand */
        text-align: center; /* Zentrierter Text */
    }

    .popup button {
        font-size: 14px; /* Kleinere Schriftgröße für den Button */
        padding: 10px 20px; /* Weniger Padding */
    }
}

/* Kleinstbildschirm (z. B. ältere Smartphones) */
@media (max-width: 480px) {
    .popup {
        padding: 15px;
        max-width: 95%; /* Breite fast über den gesamten Bildschirm */
    }

    .popup h2 {
        font-size: 20px; /* Kleinere Überschrift */
    }

    .popup p {
        font-size: 14px; /* Kleinere Schriftgröße für den Text */
        line-height: 1.4;
    }

    .popup button {
        font-size: 13px; /* Noch kleinere Schriftgröße für den Button */
        padding: 8px 16px; /* Weniger Padding für Buttons */
    }
}

/* Kontaktformular Button Styling */
#submitButton {
    background-color: #007bff; /* Farbe des Absenden-Buttons */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#submitButton:hover {
    background-color: #0056b3;
}


/* Footer */
.footer-modern {
    background-color: #fdf8f3; /* Gleiche Farbe wie der Header */
    color: #000;
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
}

.footer-modern p {
    margin: 5px 0;
}

/* Kontaktbereich */
.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
}

.contact-item i {
    font-size: 24px; /* Größe der Icons */
    color: #bbb; /* Helles Grau für die Icons */
}

.contact-item .contact-text {
    font-size: 16px;
    font-weight: 500;
}

/* Hover-Effekt */
.contact-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* Responsives Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
}

/* Über Uns: RB Digital Solutions */
.about-us {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.about-text h2 {
    font-size: 32px;
    color: #000; /* Titel in Schwarz */
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #000; /* Text in Schwarz */
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 40px;
    color: #406b5a; /* Icons in Schwarz */
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 20px;
    color: #000; /* Feature-Titel in Schwarz */
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #000; /* Feature-Text in Schwarz */
    line-height: 1.6;
}

/* Footer Styling */
.footer-modern {
    background-color: #ffffff; /* Dunkler Hintergrund */
    color: #000; /* Weißer Text */
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
}

/* Footer-Text */
.footer-modern p {
    margin: 5px 0;
}

/* Footer-Links */
.footer-modern .footer-links {
    display: flex; /* Links nebeneinander */
    justify-content: center; /* Zentriert die Links */
    list-style: none; /* Entfernt Aufzählungspunkte */
    padding: 0;
    margin: 10px 0 0 0; /* Abstand zum oberen Text */
    gap: 20px; /* Abstand zwischen den Links */
}

.footer-modern .footer-links li {
    margin: 0; /* Entfernt unnötige Margins */
}

.footer-modern .footer-links a {
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: #000; /* Weißer Text */
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s; /* Für einen sanften Effekt */
    font-family: 'Open Sans', semibold;
}

/* Hover: Weiß bleibt */
.footer-modern .footer-links a:hover {
    opacity: 0.8; /* Leicht transparenter beim Hover */
    color: #555; /* Blaue Farbe beim Hover */
    transform: scale(1.1); /* Leichtes Vergrößern */
}

/* Allgemeines Styling für Seiten-Inhalte */
.content {
    max-width: 900px;
    margin: 50px auto; /* Zentrierung */
    padding: 30px;
    background: #ffffff; /* Weißer Hintergrund */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.8;
    color: #333; /* Dunkler Text */
}

/* Überschrift */
.content h1 {
    font-size: 36px;
    color: #333; /* Dezentes Schwarz */
    text-align: center; /* Zentrierte Überschrift */
    margin-bottom: 20px;
    text-transform: uppercase; /* Großbuchstaben */
    font-weight: bold;
}

/* Unterüberschriften */
.content h2 {
    font-size: 24px;
    color: #555; /* Dunkelgrau */
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
    font-weight: bold;
}

/* Horizontale Linie unter den Unterüberschriften */
.content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: #333; /* Dunkles Schwarz als Akzent */
    border-radius: 2px;
}

/* Textblöcke */
.content p {
    margin: 15px 0;
    font-size: 16px;
    text-align: justify; /* Blocksatz für besseren Lesefluss */
}

/* Kontaktinformationen (bessere Sichtbarkeit) */
.content strong {
    color: #333; /* Dezentes Schwarz */
    font-weight: bold;
}

/* Liste */
.content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.content ul li {
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Icon für Listenpunkte */
.content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555; /* Dunkelgrau für das Icon */
    font-size: 20px;
}

/* Links */
.content a {
    color: #555; /* Dunkelgrau für Links */
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline; /* Unterstreicht Links beim Hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 20px;
    }
}

/* Ablauf-Sektion */
.steps-section {
    text-align: center;
    position: relative;
    padding: 50px 20px;
    background: url('media/scott-graham-5fNmWej4tAA-unsplash.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax-Effekt auf Desktop */
    z-index: 0;
}

/* Für mobile Geräte: Hintergrund wird grau */
@media (max-width: 768px) {
    .steps-section {
        background: #d3d3d3; /* Einfaches Grau */
        background-size: none;
        background-attachment: scroll; /* Kein Parallax-Effekt */
    }
}



/* Abschnittsüberschrift */
.steps-section h1 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #FFF;
}

/* Schritt-Wrapper */
.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Schritt wird beim Scrollen sichtbar */
.step-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

/* Schritt-Icon */
.icon-container {
    background-color: #eaeaea;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-container i {
    font-size: 40px;
    color: #666;
}

/* Schritt-Inhalt */
.step-content {
    max-width: 600px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Pfeil-Animation */
.arrow img {
    width: 40px;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.steps-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Schwarzes Overlay mit 50% Deckkraft */
    z-index: -1;
}

.steps-section::after {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-content {
        padding: 15px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .steps-section h1 {
        font-size: 28px;
    }

    .step-content h2 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 14px;
    }
}

.ablauf-page {
    all: unset; /* Setzt alle allgemeinen Styles zurück */
    margin: 0;
    font-family: 'Open Sans', semibold;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Open Sans', semibold;
}

.faq-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.faq-section h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #555;
    margin: 10px auto 0;
    border-radius: 2px;
}

.faq-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.faq-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-box h2 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-box h2:hover {
    color: #555;
}

.faq-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease;
}

.faq-box.open p {
    height: auto;
    opacity: 1;
    transform: scaleY(1);
    margin-top: 15px;
}

.faq-box h2::after {
    content: '\f107'; /* Font Awesome caret down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-box.open h2::after {
    transform: rotate(180deg); /* Rotate caret icon */
}


/* FAQ Animation */
@keyframes faqFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-box {
    animation: faqFadeIn 0.4s ease;
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 15px;
    }

    .faq-section h1 {
        font-size: 28px;
    }

    .faq-box {
        padding: 15px 20px;
    }

    .faq-box h2 {
        font-size: 18px;
    }

    .faq-box p {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.pricing-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Pricing Box */
.pricing-box {
    display: flex;
    flex-direction: column; /* Inhalt wird vertikal ausgerichtet */
    justify-content: space-between; /* Verteilt Inhalt gleichmäßig */
    align-items: center; /* Zentriert horizontalen Inhalt */
    height: 450px; /* Feste Höhe für alle Boxen */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 36px;
    color: #0078e7;
    font-weight: bold;
    margin: 15px 0;
}

/* Pricing List */
.pricing-box ul {
    flex: 1; /* Macht die Liste flexibel und füllt Platz aus */
    margin: 20px 0; /* Gleichmäßige Abstände */
    padding: 0;
    list-style: none;
}

.pricing-box ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.pricing-box ul li i {
    color: #aaa; /* Graue Haken für Basic, Premium, Individuell */
    margin-right: 10px;
}

/* Highlighted Paket */
.pricing-box.highlight ul li i {
    color: #406b5a; /* Blau für das Professional Paket */
}

.pricing-box.highlight h2 {
    color: #406b5a; /* Blauer Titel für das Professional Paket */
}

.pricing-box.highlight .btn-highlight {
    background-color: #406b5a;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s ease;
    text-align: center;
    margin-top: auto; /* Stellt sicher, dass die Buttons unten bleiben */
}

.pricing-box .btn {
    margin-top: auto; /* Schiebt den Button nach unten */
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

/* Button Grey */
.btn-grey {
    background-color: #aaa;
    color: #fff;
}

.btn-grey:hover {
    background-color: #888;
}

/* Button Highlight */
.btn-highlight {
    background-color: #28a745;
    color: #fff;
}

.btn-highlight:hover {
    background-color: #218838;
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

/* Highlighted Box */
.pricing-box.highlight {
    border: 2px solid #406b5a;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        display: flex;
        flex-direction: column; /* Stellt die Boxen untereinander */
        align-items: center; /* Zentriert die Boxen horizontal */
        justify-content: center; /* Zentriert die Boxen vertikal */
        gap: 20px; /* Abstand zwischen den Boxen */
        margin: 0 auto; /* Zentrierung des Containers */
        padding: 0 10px; /* Optional: Etwas Innenabstand für kleinere Bildschirme */
        box-sizing: border-box;
    }

    .pricing-box {
        width: 90%; /* Passt die Boxenbreite an kleinere Bildschirme an */
        max-width: 400px; /* Maximale Breite */
    }
}
