
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f2f2;
    color: #333;
}

/* Navbar */
.apple-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(7, 19, 41); /* Dunkler Hintergrund der Apple-Navbar */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Hoher Z-Index, damit die Navbar immer sichtbar ist */
}

/* Apple Logo */
.logo {
    position: absolute;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 1px solid gold;
}
.logo img {
    width: 300px;
    height: auto;
}

/* Desktop Navigation */
.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0; /* Stellt sicher, dass keine ungewollten Margins da sind */
    padding: 0; /* Stellt sicher, dass keine ungewollten Paddings da sind */
}

.nav-list li a {
    text-decoration: none;
    color: #ddb75b; /* Goldene Farbe für Desktop-Links */
    font-size: 17px;
    padding: 10px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #a38a48;
}

/* WhatsApp & eBay Icons */
.nav-icons {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001; /* Noch höher als die Navbar, damit Icons immer sichtbar sind */
}

.icon-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1f39;
    border-radius: 50%;
    border: 1px solid #bd944a;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.icon-btn:hover {
    background-color: #25446c;
}
.icon-btn img {
    width: 18px;
    height: 18px;
}

/* Hamburger */
.hamburger {
    position: absolute;
    right: 20px; /* Position am rechten Rand */
    display: none; /* Standardmäßig auf Desktop ausgeblendet */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002; /* Höchster Z-Index, damit der Hamburger immer klickbar ist und über allem liegt */
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #d7b157; /* Farbe des Hamburgers im geschlossenen Zustand */
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger Open Animation (für das "X") */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #d7b157; /* Farbe des "X" im geöffneten Zustand (Primärfarbe des 1. Entwurfs) */
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #d7b157; /* Farbe des "X" im geöffneten Zustand */
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 70px; /* Startet direkt unter der Haupt-Navbar (angenommen 70px Höhe) */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); /* Nimmt den Rest des Viewports ein */
    background-color: #ffffff; /* Weißer Hintergrund, wie im ersten Entwurf */
    z-index: 999; /* Liegt unter der Haupt-Navbar, aber über dem Seiteninhalt */

    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */

    opacity: 0;
    visibility: hidden; /* Verhindert Klicks auf dahinterliegenden Inhalt */
    transform: translateY(-100%); /* Startet über dem sichtbaren Bereich */

    transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0s 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Gleitet ins Bild */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0s 0s;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0; /* Angepasstes Padding für Liste innerhalb des Menüs */
    margin: 0;
    text-align: center;
    width: 100%;
    max-height: 100%; /* Wichtig für Scrollbarkeit, wenn viele Links */
    overflow-y: auto;
}

.mobile-menu ul li {
    margin: 15px 0; /* Abstand zwischen Links */
    opacity: 0; /* Für Stagger-Animation */
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.mobile-menu.open ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation für Links (optional) */
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open ul li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open ul li:nth-child(7) { transition-delay: 0.4s; }


.mobile-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333333; /* Dunkle Textfarbe des 1. Entwurfs */
    text-decoration: none;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: none; /* Keine Unterstreichung */
}

.mobile-menu ul li a:hover {
    background-color: #f0f0f0; /* Heller Hover-Hintergrund */
    color: #333333; /* Primärfarbe des 1. Entwurfs beim Hover */
    transform: scale(1.05);
}

.mobile-menu ul li a:active {
    transform: scale(0.9);
    transition: transform 0.1s;
}

/* Responsive Media Query */
@media (max-width: 1000px) { /* Oder dein spezifischer Breakpoint */
    /* Haupt-Navigationsliste auf Mobilgeräten ausblenden */
    .nav-list {
        display: none;
    }

    /* Hamburger-Icon anzeigen */
    .hamburger {
        display: flex;
    }

    /* Icons auf Mobilgeräten (bleiben unverändert, aber Z-Index geprüft) */
    .nav-icons {
        right: 60px; /* Anpassen, falls nötig, um Platz für den Hamburger zu schaffen */
        display: flex;
        z-index: 1001; /* Sicherstellen, dass sie sichtbar bleiben */
    }

    /* Logo auf Mobilgeräten */
    .logo {
        position: absolute;
        left: 20px;
    }
}

/* Für Bildschirme größer als der Breakpoint */
@media (min-width: 1001px) { /* Oder breakpoint + 1px */
    .mobile-menu {
        display: none; /* Mobile Menü auf Desktop-Größen ausblenden */
    }
}









/* Abstand für feste Navbar */
.anchor-offset {
    scroll-margin-top: 100px;
}

.section-heading {
    position: sticky;
    top: 60px; /* Höhe deiner fixierten Navbar */
    padding-top: 10px;
    background-color: #f3f2f2CC;
    backdrop-filter: blur(15px);
    z-index: 10;
}

.section-heading2 {
    position: sticky;
    top:  70px;
    padding-top: 10px;
    background-color: #f3f2f2CC;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.split-section {
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

.section-header .spacer {
    height: 20px;
}

.spacer2 {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 20px;
    background-color: white;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;      /* Falls Container selbst margin hat */
    padding: 0;
}

.welcome img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.mehr-button {
    background-color: rgba(0, 0, 0, 0.8); /* dunkler, halbtransparenter Hintergrund */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    border-radius: 9999px; /* pillenförmig */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 28px;
}

.mehr-button:hover {
    background-color: rgba(0, 0, 0, 0.65);
    transform: scale(1.03);
}

.mehr-button:active {
    transform: scale(0.97);
    background-color: rgba(0, 0, 0, 0.9);
}
.mehr-button-center{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;      /* Falls Container selbst margin hat */
    padding: 0;
}

header {
    margin-bottom: 1rem;
}

.section-header2 {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 100px;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}


.text-box2 {
    flex: 1;
    background: #e2e4ef;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
}

.text-box3 {
    flex: 1;
    background: #e2e4ef;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
}






/* --- KONTAKTSEKTION --- */
.kontakt-section {
    padding: 80px 20px;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.kontakt-container {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
}

/* Neuer Container für die Sticky-Überschrift */
.sticky-header-container {
    position: sticky;
    top: 50px;
    z-index: 10;
    background-color: #ffffff;
    padding: 20px 0;
    /* Der untere Margin des Sticky-Containers wird auf 0 gesetzt */
    margin: -50px -50px 0 -50px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b1e39;
    /* Dieser Wert steuert den Abstand nach unten. 20px ist ein guter Wert. */
    margin-bottom: -18px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 10px;
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ddb75b;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-details {
    text-align: center;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #0b1e39;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.address-info,
.contact-info {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #0b1e39;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
}

.icon-link img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

.icon-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #ddb75b;
}







.stichpunkt{
    position: relative;
    padding-left: 20px;
}

.stichpunkt::before{
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}
.image-box3 {
    flex: 1;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-box3 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.rundes-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: 3px solid #bd944a;
}
.rundes-logo img{
    width: 300px;
    height: auto;
}

.nav-icons2 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.section-header3{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.section-header3 h3 {
    text-align: center;
}

.section-header3 p {
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}
.subtext {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}
.email-info {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}
.email-info a {
    color: #1d3557;
    text-decoration: underline;
    font-weight: bold;
}
.button-group2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: #1d3557;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #125678;
    scale: 1.01;
}
footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #9f9f9f;
}

.section-header4 {
    display: none;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 100px;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

.section-header5 {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 100px;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

/* Mobile Optimierung */
@media (max-width: 1000px) {
    .image-box2 img {
        width: 300px;
    }

    .image-box img {
        width: 300px;
    }
}



@media (max-width: 550px) {
    .section-header2 {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 40px;
        padding-top: 100px;
        justify-content: center;
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    .image-box3 {
        flex: 1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .image-box3 img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }
    .section-header4 {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 40px;
        padding-top: 100px;
        justify-content: center;
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    .section-header5 {
        display: none;
        gap: 20px;
        align-items: center;
        margin-bottom: 40px;
        padding-top: 100px;
        justify-content: center;
        margin-left: 20px;
        margin-right: 20px;
    }
    .text-box2 {
        flex: 1;
        background: #f0f0f0;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        line-height: 1.6;
    }
    .text-box3 {
        flex: 1;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        line-height: 1.6;
    }
}














/* --- Basis-Styling für Overlays --- */
.overlay {
    position: fixed; /* Fixiert über allem */
    z-index: 1000; /* Ganz oben, über allen anderen Elementen */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Halbdurchsichtiger schwarzer Hintergrund */
    backdrop-filter: blur(8px); /* Sanfter Weichzeichner für den Hintergrund */
    -webkit-backdrop-filter: blur(8px); /* Für Safari */
    opacity: 0; /* Für die Animation */
    transition: opacity 0.3s ease; /* Sanftes Einblenden */
    /* Flexbox für perfekte Zentrierung */
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
    padding: 20px; /* Grund-Padding für kleine Bildschirme */
    box-sizing: border-box; /* Padding in der Gesamtgröße enthalten */
    pointer-events: none; /* Klicks durchlassen, wenn unsichtbar */
}

/* Wenn das Overlay sichtbar ist */
.overlay.active {
    opacity: 1;
    pointer-events: auto; /* Klicks aktivieren, wenn sichtbar */
}

/* Inhalt der Overlay-Box */
.overlay-content {
    background-color: #fefefe;
    border-radius: 15px; /* Stärkere Rundung */
    box-shadow: 0 8px 30px rgba(0,0,0,0.3); /* Verbesserter Schatten */
    position: relative;
    box-sizing: border-box;
    width: 90%; /* Standardbreite für Mobilgeräte */
    max-width: 900px; /* Maximale Breite für größere Bildschirme */
    max-height: 90vh; /* Maximale Höhe des Inhalts, damit es scrollbar bleibt */
    overflow-y: auto; /* Scrollbar für den Inhalt, falls er zu lang wird */
    transform: translateY(20px); /* Für die Animation */
    opacity: 0; /* Für die Animation */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Sanftes Einfliegen */
}

/* Wenn das Overlay sichtbar ist, bewegt sich der Inhalt an seine Position */
.overlay.active .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

/* Padding für den Inhalt innerhalb der Box */
.overlay-inner-content {
    padding: 30px; /* Mehr Innenabstand */
    line-height: 1.7; /* Bessere Zeilenhöhe */
    color: #333; /* Standardtextfarbe */
    /* text-align: left; ist standardmäßig linksbündig, wenn nicht anders angegeben */
}

/* Anpassung für größere Bildschirme (Platz an den Rändern, 1:5 Verhältnis) */
@media (min-width: 768px) {
    .overlay-content {
        width: 80%; /* 80% Breite auf größeren Screens */
    }
}
/* Für kleinere Bildschirme kann man den Abstand anpassen oder ganz weglassen */
@media (max-width: 767px) {
    .overlay-content {
        width: 100%; /* Volle Breite, nur durch Padding des .overlay begrenzt */
    }
    .overlay-inner-content {
        padding: 20px; /* Etwas weniger Padding auf kleinen Geräten */
    }
}

/* Schließen-Button */
.close-button {
    color: #0b1e39; /* Ihre dunkle Blau-Farbe */
    font-size: 36px; /* Größerer Schließen-Button */
    font-weight: 300; /* Leichterer Font-Weight */
    position: absolute; /* Positioniert relativ zum .overlay-content */
    top: 15px;
    right: 20px;
    cursor: pointer;
    line-height: 1; /* Vertikale Ausrichtung */
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-button:hover {
    color: #bd944a; /* Ihre Gold-Farbe beim Hover */
    transform: rotate(90deg); /* Kleine Animation beim Hover */
}

/* Styling für Überschriften im Overlay */
.overlay-title {
    text-align: center; /* Titel zentrieren */
    color: #0b1e39; /* Ihre dunkle Blau-Farbe */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-top: 10px; /* Abstand zum Schließen-Button */
}

.overlay-subtitle {
    color: #0b1e39; /* Ihre dunkle Blau-Farbe */
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(11, 30, 57, 0.1); /* Leichte Trennlinie */
    padding-bottom: 5px;
    text-align: left; /* Untertitel linksbündig */
}

.overlay-paragraph {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    text-align: left;
}

.overlay-paragraph a {
    color: #bd944a; /* Links in Gold */
    text-decoration: underline;
}

.overlay-paragraph a:hover {
    color: #a38a48;
}

/* Listen im Overlay (für Datenschutzerklärung) */
.overlay-list {
    list-style-type: disc; /* Oder 'circle', 'square' */
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
    text-align: left; /* Listen linksbündig */
}

.overlay-list li {
    margin-bottom: 5px;
}

.overlay-list li strong {
    color: #333; /* Fettschrift in den Listen */
}

/* Scrollbar-Styling für Overlay-Inhalt */
.overlay-content::-webkit-scrollbar {
    width: 8px;
}

.overlay-content::-webkit-scrollbar-track {
    background: #e2e4ef; /* Passend zu Ihrem Text-Box-Hintergrund */
    border-radius: 10px;
}

.overlay-content::-webkit-scrollbar-thumb {
    background: #bd944a; /* Passend zu Ihrer Gold-Farbe */
    border-radius: 10px;
}

.overlay-content::-webkit-scrollbar-thumb:hover {
    background: #a38a48;
}

/* Styling für die Öffnen-Buttons */
.open-overlay-button {
    background-color: #0b1e39; /* Ihre dunkle Blau-Farbe */
    color: #ddb75b; /* Ihre Gold-Farbe */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    border-radius: 9999px; /* Pillenform */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Abstand zwischen den Buttons */
    display: inline-block; /* Für nebeneinanderliegende Buttons */
}

.open-overlay-button:hover {
    background-color: #25446c; /* Dunkleres Blau */
    transform: scale(1.03);
    color: #f5e0ac; /* Helleres Gold */
}

.open-overlay-button:active {
    transform: scale(0.97);
    background-color: #0d1f39;
}

/* --- Fix für Zeilenumbruch & automatische Bindestriche --- */
.overlay-content,
.overlay-inner-content,
.overlay-title,
.overlay-subtitle,
.overlay-paragraph,
.overlay-list {
    min-width: 0;                /* verhindert horizontales Überlaufen */
    overflow-wrap: break-word;   /* bricht lange Wörter automatisch um */
    word-wrap: break-word;       /* ältere Browser-Kompatibilität */
    hyphens: auto;               /* fügt automatisch Bindestriche ein */
}



















/*
.immobilien-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.immobilien-slide {
    display: none;
    text-align: center;
    animation: fade 0.6s ease;
}

.immobilien-slide.active {
    display: block;
}

.immobilien-bild {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.slider-button {
    background-color: #333;
    color: white;
    font-size: 22px;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background-color: #555;
    transform: scale(1.1);
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
*/