/* ==========================================================================
   1. GRUNDKONFIGURATION & RESETS (Inklusive Sticky-Footer-Garantie & Overflow-Schutz)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* Verhindert seitliches Scrollen/Sprengen auf Handys */
}

body {
    background-color: #f8fafc; 
    color: #1e293b;            
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto; 
    animation: inhaltsWechsel 0.3s ease-out forwards;
}

@keyframes inhaltsWechsel {
    from { 
        opacity: 0; 
        transform: translateY(8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ==========================================================================
   2. KOPFBEREICH & NAVIGATION (Header)
   ========================================================================== */
/* Neu in style.css */
header {
    background-color: #ffffff;
    width: 100%;
    border-bottom: 4px solid #e2e8f0; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02); 
    position: fixed; /* Bleibt IMMER fest oben stehen */
    top: 0;
    left: 0;
    z-index: 1000;   /* Liegt immer über allen Bildern und Texten */
    padding: 0; 
}

/* WICHTIG: Da der Header jetzt fixiert ist und über dem Inhalt schwebt,
   müssen wir dem body oben einen Abstand geben, damit die Inhalte 
   nicht unter dem Header verdeckt werden. */
body {
    padding-top: 115px; /* Höhe deines Headers auf dem PC */
}

.header-container {
    max-width: 1260px;            
    margin: 0 auto;
    padding: 0 15px;          
    display: flex;            
    justify-content: space-between;
    align-items: center;      
    height: 115px;            
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    width: 320px;
    flex-shrink: 0;           
}

.logo a {
    display: block;
}

.logo img {
    height: 90px !important;
    width: auto !important;
    display: block !important;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #03233f;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 5px;
}

nav {
    display: flex;
    align-items: center;
    flex-grow: 1;              
    justify-content: flex-end; 
}

nav ul {
    list-style: none;
    display: flex;            
    align-items: center;      
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 15px;        
    position: relative;
    display: flex;
    align-items: center;
    height: 115px;            
    flex-shrink: 0;           
}

nav ul li a {
    text-decoration: none;
    color: #1d2a44; 
    font-weight: 600;
    font-size: 16.5px !important; 
    white-space: nowrap !important; 
    padding: 10px 2px;
    display: block;
    transition: color 0.2s ease;
}

nav ul li a:hover:not(.nav-btn),
nav ul li a.active:not(.nav-btn) {
    color: #1d2a44;
}

nav ul li a:hover:not(.nav-btn)::after,
nav ul li a.active:not(.nav-btn)::after {
    content: "";
    position: absolute;
    bottom: 25px;            
    left: 2px;
    right: 2px;
    height: 4px;             
    background-color: #1d2a44; 
}

nav ul li a.nav-btn {
    background-color: #1d63b8; 
    color: #ffffff;
    padding: 14px 24px;       
    border-radius: 4px;
    font-weight: 700;
    font-size: 16.5px !important; 
    white-space: nowrap !important; 
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(29, 99, 184, 0.2);
}

nav ul li a.nav-btn:hover {
    background-color: #154b8c;
    transform: translateY(-1px);
}

/* ==========================================================================
   3. HERO-SEKTION
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(0, 31, 63, 0.92), rgba(0, 20, 40, 0.96)); 
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 35px auto;
    color: #cbd5e1;           
}

.button {
    display: inline-block;
    background-color: #1d63b8; 
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(29, 99, 184, 0.25);
}

.button:hover {
    background-color: #154b8c;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. TEXT-BEREICHE
   ========================================================================== */
.text-bereich {
    max-width: 900px;
    margin: 70px auto 30px auto;
    padding: 0 20px;
    text-align: center;
}

.text-bereich h2 {
    color: #001f3f;           
    margin-bottom: 22px;
    font-size: 30px;
    font-weight: 700;
}

.text-bereich p {
    color: #475569;
    font-size: 17px;
}

/* ==========================================================================
   5. LEISTUNGSSEITE & WECHSELNDE BLÖCKE
   ========================================================================== */
.leistungen-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.leistungen-hero h1 {
    color: #03233f;
    font-size: 36px;
    margin-bottom: 10px;
}

.leistungen-hero p {
    color: #64748b;
    font-size: 18px;
}

.leistungen-container {
    max-width: 1100px;
    margin: 40px auto 100px auto;
    padding: 0 20px;
}

.leistungs-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.leistungs-block.block-reverse {
    flex-direction: row-reverse;
}

.leistungs-text {
    flex: 1;
}

.leistungs-text h2 {
    color: #03233f;
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
}

.leistungs-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1d63b8;
    margin-top: 8px;
}

.leistungs-text p {
    color: #334155;
    line-height: 1.6;
    font-size: 16px;
}

.leistungs-bild-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leistungs-bild {
    max-width: 480px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.zoomable-img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
    display: block;
}

.zoomable-img:hover {
    transform: scale(1.02) translateY(30px);
}

.bild-hinweis {
    font-size: 13px;
    color: #475569;
    text-align: center;
    margin-top: 15px !important;
    display: block !important;
    font-weight: 500;
}

.bild-hinweis i {
    color: #1d63b8;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .leistungs-bild, .zoomable-img:hover {
        transform: translateY(0) !important;
    }
    .bild-hinweis {
        margin-top: 15px !important;
    }
}

/* ==========================================================================
   6. MASCHINENPARK
   ========================================================================== */
.maschinen-bereich {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.maschinen-bereich h2 {
    color: #001f3f;
    margin: 50px 0 25px 0;
    border-left: 5px solid #1d63b8; 
    padding-left: 18px;
    font-size: 26px;
}

.maschine-bild-box {
    width: 100%;
    height: 280px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    box-sizing: border-box;
    padding: 10px;
}

.maschine-bild-box img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

.tabelle-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.03);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
}

th {
    background-color: #001f3f; 
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   7. ANSPRECHPARTNER & TEAM KACHELN
   ========================================================================== */
.ansprechpartner-bereich {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
}

.leitung-reihe, .team-reihe {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.leitung-reihe {
    margin-bottom: 40px;
}

.karte {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 320px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.profil-bild {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 15px auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.profil-bild-ersatz {
    width: 90px;
    height: 90px;
    background-color: #03233f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px auto;
}

.karte h3 {
    font-size: 20px;
    color: #03233f;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.position {
    font-size: 14px;
    color: #1d63b8;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-daten {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    align-items: center;
}

.kontakt-zeile {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #334155;
    font-size: 15px;
    transition: color 0.2s;
}

.kontakt-zeile:hover {
    color: #1d63b8;
}

.kontakt-zeile i {
    color: #1d63b8;
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   8. KONTAKTSEITE
   ========================================================================== */
.kontakt-info, .kontakt-formular {
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.03);
}

.kontakt-info h2, .kontakt-formular h2 {
    color: #001f3f;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
footer {
    background-color: #03233f !important; 
    color: #ffffff;
    padding: 70px 6% 0 6%; 
    overflow: hidden;         
    margin-top: auto; 
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1260px;
    margin: 0 auto;
    padding-bottom: 50px; 
}

.footer-spalte {
    flex: 1;
    min-width: 200px;
}

.footer-spalte.brand {
    flex: 1.8;
    padding-right: 30px;
}

.footer-spalte h4 {
    color: #ffffff;
    font-size: 22px;         
    font-weight: 700;   
    margin-bottom: 30px;    
    text-transform: none;    
}

.footer-spalte p {
    font-size: 16px;         
    color: #ffffff;          
    line-height: 1.6;
    font-weight: 400;   
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;                
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 17px;         
    font-weight: 400;   
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-kontakt-netz {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-link {
    text-decoration: none !important;   
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    transition: opacity 0.2s ease;
    color: #ffffff !important;          
}

.kontakt-link:hover {
    opacity: 0.75 !important;          
}

.kontakt-link .kontakt-text {
    color: #ffffff !important;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;   
    text-align: left;
}

.kontakt-icon {
    color: #ffffff !important;
    font-size: 19px;         
    width: 24px;            
    text-align: center;
    margin-top: 2px;
}

.flip-icon {
    transform: scaleX(-1) rotate(15deg);
    display: inline-block;
}

.siegel-box {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.siegel-platzhalter {
    width: 70px;
    height: 70px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    color: #ffffff;
    font-size: 26px;         
    transition: opacity 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-unten {
    background-color: #1d63b8; 
    margin: 40px -10% 0 -10%;  
    padding: 22px 8%;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    width: 120%;                 
}

/* ==========================================================================
   10. TIMELINE (ÜBER UNS)
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #03233f;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #ffffff;
    border: 4px solid #1d63b8;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
    text-align: left;
}

.right::after {
    left: -8px;
}

.timeline-content {
    padding: 20px;
    background-color: #f8fafc;
    position: relative;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.timeline-content h3 {
    font-size: 22px;
    color: #1d63b8;
    margin: 0 0 5px 0;
    font-weight: 800;
}

.timeline-content p {
    font-size: 15px;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }
    .timeline-item::after {
        left: 23px;
        right: auto;
    }
    .right {
        left: 0%;
    }
}

/* ==========================================================================
   11. COOKIE-BANNER & LIGHTBOX MODAL
   ========================================================================== */
#cc--main .c-b {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 35px !important;
    border-radius: 8px !important;
    max-width: 520px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    overflow: visible !important;
}

#cc--main .c-b__buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 25px !important;
    order: 2 !important;
}

#cc--main .c-b__btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease !important;
}

#cc--main .all-btn {
    background-color: #03233f !important;
    color: #ffffff !important;
    border: none !important;
}
#cc--main .all-btn:hover {
    background-color: #1d63b8 !important;
}

#cc--main .nec-btn {
    background-color: #e2e8f0 !important;
    color: #334155 !important;
    border: none !important;
}
#cc--main .nec-btn:hover {
    background-color: #cbd5e1 !important;
}

#cc--main .settings-link-wrapper {
    text-align: center;
    margin-top: 20px !important;
    order: 3 !important;
}
#cc--main .settings-link-wrapper a {
    color: #1d63b8;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
#cc--main .settings-link-wrapper a:hover {
    text-decoration: underline;
}

#cc--main .borlabs-close-x {
    display: inline-block !important;
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    width: 24px !important;
    height: 24px !important;
    cursor: pointer !important;
    z-index: 99999 !important;
}

#cc--main .borlabs-close-x::before,
#cc--main .borlabs-close-x::after {
    content: '' !important;
    position: absolute !important;
    height: 18px !important;
    width: 2px !important;
    background-color: #64748b !important;
    top: 3px !important;
    left: 11px !important;
    transition: background-color 0.2s ease !important;
    pointer-events: none !important;
}

#cc--main .borlabs-close-x::before { transform: rotate(45deg) !important; }
#cc--main .borlabs-close-x::after { transform: rotate(-45deg) !important; }

#cc--main .borlabs-close-x:hover::before,
#cc--main .borlabs-close-x:hover::after {
    background-color: #03233f !important;
}

/* Globale Lightbox (Vollbild-Bildvergrößerung) */
#img-lightbox {
    display: none;
    position: fixed;
    z-index: 999999; /* Erhöht, damit es über Header und Flyouts liegt */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 35, 63, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    cursor: zoom-out;
}

#img-lightbox.show {
    display: flex !important;
}

#img-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #ffffff;
    object-fit: contain;
    cursor: default;
}

#img-lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}

@media screen and (max-width: 991px) {
    /* 1. KILLS THE WHITE BAR: Löscht den alten Desktop-Padding vom Body */
    body {
        padding-top: 0 !important;
    }

    /* 2. Schiebt main exakt unter den 70px mobilen Header */
    main {
        padding-top: 70px !important;
        margin-top: 0 !important;
    }

    .hero, .hero-startseite {
        margin-top: 0 !important;
    }

    /* 3. Header & Logo-Höhe mobil fixieren */
    .header-container {
        height: 70px !important;
    }

    .logo img {
        height: 50px !important;
    }

    .menu-toggle {
        display: block !important;
    }

    /* Stoppt den quer liegenden Strich auf mobilen Geräten */
    nav ul li a:hover:not(.nav-btn)::after,
    nav ul li a.active:not(.nav-btn)::after {
        display: none !important;
    }

    /* 4. Ausklappmenü schließt exakt bei 70px an */
    #menu-links {
        display: none;
        flex-direction: column;
        position: fixed; 
        top: 70px !important; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    #menu-links.open {
        display: flex !important;
    }

    #menu-links a.active:not(.nav-btn) {
    color: #1d63b8 !important;
    font-weight: 700 !important;
    background-color: #f8fafc;
    border-left: 4px solid #1d63b8;
}

    #menu-links li {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        height: auto !important;
    }

    #menu-links a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #f1f5f9;
        font-size: 16px !important;
    }

    .nav-btn {
        background-color: #1d63b8 !important;
        color: #ffffff !important;
        margin: 10px auto !important;
        width: 80% !important;
        border-radius: 4px;
        border-bottom: none !important;
    }

    /* Team-Reihen brechen mobil sauber untereinander um */
    .leitung-reihe, .team-reihe {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    .ansprechpartner-bereich .karte {
        width: 100% !important;
        max-width: 340px !important;
    }
}

/* ==========================================================================
   RESPONSIVE ANPASSUNG FÜR DIE LEISTUNGSSEITE (MOBIL)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* Stapelt Text und Bild sauber untereinander */
    .leistungs-block,
    .leistungs-block.block-reverse {
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 50px !important;
    }

    /* Stellt sicher, dass das Bild die volle mobile Breite nutzt */
    .leistungs-bild-wrapper {
        width: 100% !important;
    }

    .leistungs-bild {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 6px;
    }
}

/* ==========================================================================
   SIDE KONTAKT WIDGET - VERSION RECHTS & DEZENT
   ========================================================================== */
.side-widget-frau-rechts {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(260px); 
    display: flex;
    align-items: center;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-widget-frau-rechts.open {
    transform: translateY(-50%) translateX(0);
}

.side-trigger-area-rechts {
    cursor: pointer;
    position: relative;
    margin-right: -2px; 
    z-index: 2;
}

.kontakt-frau-bild-dezenter {
    height: 230px; 
    width: auto;
    display: block;
    filter: drop-shadow(-4px 4px 6px rgba(0,0,0,0.2));
}

.side-widget-content-dezenter {
    width: 260px; 
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-right: none; 
    padding: 18px; 
    box-shadow: -6px 4px 18px rgba(0, 0, 0, 0.12);
    border-radius: 8px 0 0 8px; 
    position: relative;
    z-index: 1;
}

.side-widget-content-dezenter h3 {
    margin: 0 0 6px 0;
    color: #03233f;
    font-size: 17px; 
    font-weight: 800;
}

.side-widget-content-dezenter p {
    font-size: 13px; 
    color: #475569;
    line-height: 1.4;
    margin-bottom: 15px;
}

.side-kontakt-info-dezenter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-info-link-dezenter {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #03233f;
    font-weight: 600;
    font-size: 14px;
}

.side-info-link-dezenter i {
    color: #1d63b8;
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.side-info-link-dezenter.whatsapp i {
    color: #25d366; 
}

/* Bürozeiten Text & blaue Überschrift */
.side-buerozeiten-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.buerozeiten-titel {
    color: #1d63b8; /* Nur das Wort "Bürozeiten:" in blau */
    font-weight: 700;
}

/* Button zurück im ursprünglichen blauen Design */
.side-kontakt-btn-dezenter {
    display: block;
    text-align: center;
    background-color: #1d63b8;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 18px;
    transition: background 0.2s;
}

.side-kontakt-btn-dezenter:hover {
    background-color: #03233f !important;
}

@media screen and (max-width: 768px) {
    .side-widget-frau-rechts {
        display: none;
    }
}
/* Styling für das Instagram Icon im Side-Widget */
.side-info-link-dezenter.instagram i {
    color: #e1306c; 
}
/* ==========================================================================
   INSTAGRAM FOOTER STYLING (GROSS & IN FARBE)
   ========================================================================== */
.instagram-footer-icon {
    font-size: 24px !important; /* Deutlich größeres Icon */
    width: 24px !important;
    text-align: center;
    /* Echter Instagram Farbverlauf */
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
 background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease-in-out;
}

/* Klickbereich-Hover Effekt */
.instagram-footer-item:hover .instagram-footer-icon {
    transform: scale(1.18); /* Leichtes Vergrößern beim Drüberfahren */
}

/* Status-Farben für das Kontakt-Widget */
.status-geoeffnet {
    color: #16a34a !important; /* Sauberes Grün */
}

.status-geschlossen {
    color: #dc2626 !important; /* Sauberes Rot */
}