/* Grundfarben für Text */




/* Standard Scrollbar für Chrome, Edge & Safari */
::-webkit-scrollbar {
    width: 8px; /* Dünner, eleganter Scrollbalken */
}

/* Hintergrund der Scrollbar (Track) */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); /* Dezenter Hintergrund */
    border-radius: 10px; /* Abgerundete Form */
}

/* Scrollbalken (Thumb) */
::-webkit-scrollbar-thumb {
    background: rgba(33, 122, 174, 0.7); /* Transparenter Blauton */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Glas-Effekt */
    transition: background 0.3s ease-in-out;
}

/* Scrollbalken beim Hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(33, 122, 174, 1); /* Intensivere Farbe beim Hover */
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(33, 122, 174, 0.7) rgba(255, 255, 255, 0.1);
}


.text-color-primary {
    color: #217aae; /* Beispiel: Primärfarbe (Blau) */
}

.text-color-secondary {
    color: #333333; /* Beispiel: Sekundärfarbe (Grau) */
}

.text-color-success {
    color: #28a745; /* Beispiel: Erfolgsfarbe (Grün) */
}

.text-color-danger {
    color: #dc3545; /* Beispiel: Fehlerfarbe (Rot) */
}

.text-color-warning {
    color: #ffc107; /* Beispiel: Warnfarbe (Gelb) */
}

.text-color-info {
    color: #17a2b8; /* Beispiel: Infofarbe (Türkis) */
}

.text-color-light {
    color: #f8f9fa; /* Beispiel: Hell (Weiß) */
}

.text-color-dark {
    color: #343a40; /* Beispiel: Dunkel (Schwarz) */
}

/* Optional: Zusätzliche Textfarben */
.text-color-muted {
    color: #6c757d; /* Gedämpfte Farbe */
}

.text-color-white {
    color: #ffffff; /* Weiß */
}




/* Allgemeine Header-Stile */
header {
    background-color: #f0f0f0;
}

/* Footer-Stile */
footer {
    background-color: #333;
    color: #fff;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #0c4364;
    text-decoration: underline;
}

footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

footer .social-link {
    color: #adb5bd;
    font-size: 1.25rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

footer .social-link:hover {
    color: #0c4364;
}

footer small {
    font-size: 0.875rem;
    color: #ffffff;
}

/* Responsive Footer für mobile Geräte */
@media (max-width: 767px) {
    footer .text-md-right {
        text-align: left !important;
    }
}

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

body, html {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}



/* Kontaktbereich mit Bild-Hintergrund */
.contact-section {
    background-image: url('/assets/img/contact-bg.jpg'); /* Hier den Pfad zum Bild anpassen */
    background-size: cover;         /* Bild füllt den gesamten Bereich */
    background-position: center;    /* Bild wird in der Mitte ausgerichtet */
    padding: 50px 0;                /* Großzügiger Abstand oben und unten */
    color: white;                   /* Weißer Text für besseren Kontrast */
}

/* Container und Layout */
.container {
    max-width: 1200px;              /* Maximale Breite des Containers */
    margin: 0 auto;                 /* Zentrieren des Containers */
    padding: 0 20px;                /* Abstand zur Seite */
}

/* Flexbox für die Anordnung von Text und Buttons */
.contact-content {
    display: flex;                  /* Flexbox für die Anordnung */
    justify-content: space-between; /* Titel links, Buttons rechts */
    align-items: center;            /* Vertikale Zentrierung */
    gap: 30px;                      /* Abstand zwischen Titel und Buttons */
}

/* Titel und Text im linken Bereich */
.contact-text {
    flex: 1;                        /* Titel nimmt so viel Platz wie nötig */
}

.contact-text h3 {
    font-size: 2rem;                /* Größere Schrift für die Überschrift */
    margin-bottom: 10px;            /* Abstand nach unten */
    color: white;                   /* Weißer Text */
    text-align: left;               /* Links ausgerichtet */
}

.contact-text p {
    font-size: 1rem;                /* Standardgröße für den Text */
    color: white;                   /* Weißer Text */
    text-align: left;               /* Links ausgerichtet */
    line-height: 1.6;               /* Zeilenhöhe für bessere Lesbarkeit */
}

/* Buttons im rechten Bereich */
.contact-buttons {
    display: flex;                  /* Flexbox für die Buttons */
    gap: 20px;                      /* Abstand zwischen den Buttons */
    flex-shrink: 0;                 /* Verhindern, dass die Buttons schrumpfen */
}

.contact-button {
    padding: 15px 25px;             /* Großzügige Polsterung für die Buttons */
    font-size: 1rem;                /* Standardgröße der Schrift */
    border: none;                   /* Keine Umrandung */
    border-radius: 5px;             /* Runde Ecken */
    text-decoration: none;          /* Entferne Unterstreichung */
    color: #fff;                    /* Weißer Text */
    transition: background-color 0.3s ease; /* Weicher Hover-Effekt */
    cursor: pointer;
}

.email-button {
    background-color: #217aae;      /* Blau für E-Mail */
}

.email-button:hover {
    background-color: #0c4364;      /* Dunkleres Blau beim Hover */
}

.call-button {
    background-color: #28a745;      /* Grün für Anruf */
}

.call-button:hover {
    background-color: #218838;      /* Dunkleres Grün beim Hover */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;      /* Vertikale Anordnung auf kleinen Bildschirmen */
        align-items: center;         /* Zentriere Inhalt */
        gap: 20px;                   /* Weniger Abstand bei kleinerer Ansicht */
        text-align: center;          /* Zentriere Text */
    }

    .contact-buttons {
        flex-direction: column;      /* Buttons untereinander */
        gap: 15px;                   /* Weniger Abstand zwischen Buttons */
    }
}


/* Top-Bar Styling */
.top-bar {
    background-color: #f8f8f8;
    color: #333;
    font-size: 0.85rem;
    padding: 8px 0;
    width: 100%;
    display: flex;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar .left {
    display: flex;
    gap: 20px;
}

.top-link {
    color: #217aae;
    text-decoration: none;
    font-weight: 600;
}

.top-link:hover {
    text-decoration: underline;
}

.top-bar .right {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.contact-item i {
    margin-right: 5px;
}

/* Topbar auf mobilen Geräten ausblenden */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}
/* Navigation */
.navbar-wrapper {
    background-color: white;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-logo img {
    height: 60px;
}

.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-links li {
    position: relative;
}

.navbar-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    color: #217aae;
}

/* Nur Menüpunkte mit Dropdowns erhalten Pfeile */
.navbar-links .dropdown > a:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath fill="%23333" d="M1.5 5.5l6 6 6-6-1.4-1.4-4.6 4.6-4.6-4.6L1.5 5.5z"/%3E%3C/svg%3E');
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover > a:after {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    font-size: 0.9rem;
    white-space: nowrap;
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-content li {
    padding: 10px 15px;
}

.dropdown-content li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-content li a:hover {
    background-color: transparent;
    color: #0e94e6;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Burger Menü */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}


/* Mobile Navbar */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links li {
        text-align: center;
        padding: 10px;
    }
}


    /* Badges */
    .badge {
        display: inline-block;
        padding: 0.20em 0.6em;
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: 0.25rem;
    }

    /* Badge Variants */
    .badge-primary {
        background-color: #007bff; /* Blau */
    }

    .badge-success {
        background-color: #28a745; /* Grün */
    }

    .badge-danger {
        background-color: #dc3545; /* Rot */
    }

    .badge-info {
        background-color: #17a2b8; /* Türkis */
    }

    .badge-warning {
        background-color: #ffc107; /* Gelb */
        color: #212529; /* Dunkler Text */
    }

    /* Pill Badge */
    .badge-pill {
        border-radius: 9999px;
    }

    /* Additional Styling */
    .badge-container {
        font-family: Arial, sans-serif;
        margin: 20px;
        padding: 20px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    h1 {
        color: #ffffff;
    }


    /* Hero-Bereich */
    .hero {
        background-image: url('/assets/img/home_bg.webp');
        background-size: cover;
        background-position: center;
        height: 95vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
        padding-right: 40px;
        padding-left: 40px;
        padding-bottom: 100px;
        z-index: 1;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: right;
        max-width: 1200px;
        margin-left: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero a {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .hero a:hover {
        background-color: #0056b3;
    }

    /* Boxen (Karten-Design) */
    .box-section {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .box-slider {
        position: relative;
        top: -50px;
    }

    .box {
        background-color: white;
        padding: 20px;
        flex: 1;
        text-align: left;
        border-radius: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .box:hover {
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
    }

    .box img {
        width: 94px;
        height: 90px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .box h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 8px;
    }

    .box p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }

    /* Slider für Boxen (Leistungen) */
    .box-slider {
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
        background-color: #f8f9fa;
        z-index: 3;
    }

    .box-wrapper {
        display: flex;
        gap: 20px;
        padding: 0 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .box-wrapper::-webkit-scrollbar {
        display: none;
    }

    .box {
        flex: 0 0 25%;
    }

    /* Responsive Boxen */
    @media (max-width: 1200px) {
        .box {
            flex: 0 0 33.33%;
        }
    }

    @media (max-width: 768px) {
        .box {
            flex: 0 0 100%;
        }
    }

    /* Text und Bild Layout */
    .text-image-section {
        display: flex;
        justify-content: center; /* Zentriere den Inhalt horizontal */
        align-items: center; /* Vertikale Zentrierung */
        margin: 40px 0; /* Abstand nach oben und unten */
    }

    .text-image-container {
        max-width: 1200px; /* Maximale Breite des Containers, damit es wie die Know-How Section wirkt */
        margin: 0 auto; /* Zentriert den Container */
        display: flex; /* Flexbox-Layout für Text und Bild */
        gap: 50px; /* Abstand zwischen Text und Bild */
        align-items: center;
    }

    .text-section {
        flex: 1;
        font-size: 1rem;
        color: #333;
    }

    .text-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #333;
    }

    .text-section p {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .image-section {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .image-section img {
        max-width: 100%;
        height: auto;
    }

    /* Know-How Section Styling */
    .know-how-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 20px;
        text-align: center;
    }

    .know-how-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }

    .know-how-section p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 40px;
    }

    /* Card Styles */
    .card {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    .card:hover {
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    }

    /* Flexbox Layout für Icons und Text */
    .card-body {
        display: flex;
        align-items: center;
        text-align: left;
    }

    /* Icons Styling */
    .icon {
        font-size: 2.5rem;
        color: #217aae;
        margin-right: 15px;
    }

    /* Text Styles */
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .card-text {
        font-size: 1rem;
        color: #666;
        line-height: 1.5;
    }


    /* Titelstil */
    .card-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

    /* Zahlenbereich: Immer zentriert und separat */
    .stats-value {
        margin-top: 12px;
    }

    .api-stats-number {
        font-size: 2.2rem;
        font-weight: bold;
        color: #333;
    }

    /* Responsive Anpassungen */
    @media (max-width: 768px) {
        .api-stats-card {
            margin-bottom: 30px;
        }

        .stats-header i {
            font-size: 2rem;
        }

        .card-title {
            font-size: 1rem;
        }

        .api-stats-number {
            font-size: 1.8rem;
        }
    }




    /* Gleichmäßige Höhe für alle Cards */
    .equal-height-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    /* Responsive Layout */
    @media (max-width: 768px) {
        .know-how-section {
            padding: 30px 10px;
        }

        .card {
            margin-bottom: 20px;
        }

        .card-body {
            flex-direction: column;
            align-items: flex-start;
            text-align: center;
        }

        .icon {
            margin-bottom: 10px;
        }
    }




    /* Responsive Anpassung für kleinere Bildschirme */
    @media (max-width: 768px) {
        .text-image-container {
            flex-direction: column; /* Anpassen auf vertikale Anordnung */
            text-align: center; /* Zentriere den Text */
            gap: 10px;
        }

        .image-section {
            justify-content: center;
            margin-top: 20px;
        }
    }

    .live-statistics-section {
        background-color: #f0f4f8;
        padding: 3rem 0;
    }

    /* Inhalt innerhalb der Live-Statistiken */
    .live-statistics-section .container {
        max-width: 1140px; /* Standardbreite für den Container */
    }

    .live-stat-card {
        background-color: white;
        border: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 100px;
        position: relative;
        border: 1px solid #e0e7ec;
    }

    .live-stat-card::after {
        /*content: 'Live';*/
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 0.8rem;
        color: white;
        background-color: #dc3545;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: bold;
    }

    .live-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    }

    .live-stat-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .live-stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #212529;
        margin: 0;
        animation: pulse 1.5s infinite ease-in-out;

        @keyframes pulse {
            0% {
                color: #212529;
            }
            50% {
                color: #007bff;
            }
            100% {
                color: #212529;
            }

        }

        .live-statistics-section p.text-muted {
            font-size: 1rem;
            color: #6c757d;
        }
    }


    /* Stil für die Markenlogo-Section */
    .brand-logo-section {
        background-color: #f8f9fa; /* Optionaler Hintergrund */
        padding: 2rem 0;
    }

    .brand-logo-carousel {
        position: relative;
        overflow: hidden;
    }

    .brand-logo {
        width: 150px; /* Breite des Logos */
        height: auto; /* Verhältnis beibehalten */
        display: block;
        margin: 0 auto;
        transition: transform 0.3s ease;
    }

    .brand-logo:hover {
        transform: scale(1.1); /* Effekt beim Hover */
    }

    /* Swiper spezifische Anpassungen */
    .swiper {
        width: 100%;
        height: auto;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Optional: Anpassungen der Navigationsknöpfe */
    .swiper-button-next, .swiper-button-prev {
        color: #217aae; /* Primärfarbe */
        font-size: 1.5rem;
    }

    .swiper-pagination-bullet {
        background-color: #217aae; /* Primärfarbe */
    }


    /* Stil für den Breadcrumb-Bereich */
    .breadcrumb-area {
        background-size: cover;
        background-position: center;
        padding: 60px 0; /* Abstand oben und unten */
        color: white; /* Weißer Text auf dunklem Hintergrund */
        position: relative;
        padding: 150px 0; /* Erhöhe den Abstand oben und unten */

    }

    /* Optional: Overlay für besseren Kontrast */
    .breadcrumb-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Dunkles Overlay */
        z-index: 1;
    }

    .breadcrumb-content {
        position: relative;
        z-index: 2;
    }

    /* Seitenüberschrift */
    .breadcrumb-area .page-title {
        font-size: 3rem; /* Große Schriftgröße für die Überschrift */
        font-weight: bold;
        margin-bottom: 20px;
        color: #ffffff;
    }

    /* Breadcrumb-Navigation */
    .breadcrumb {
        background: none;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .breadcrumb-item.active {
        color: #217aae; /* Ersetze #ff5722 durch deine gewünschte Farbe */
        font-weight: bold; /* Optional: Fettschrift, um das aktive Element hervorzuheben */
    }


    .breadcrumb-item + .breadcrumb-item::before {
        content: '>'; /* Trennzeichen für Breadcrumb */
        color: #ffffff;
        margin: 0 5px;
    }

    /* Breadcrumb Links */
    .breadcrumb-item a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .breadcrumb-item a:hover {
        color: #007bff; /* Farbe beim Hover */
    }


    /* Abschnitt für die Unternehmenswerte */
    .company-mission, .our-services, .our-values, .conclusion {
        background-color: #f8f9fa;
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* Farben für primäre Überschrift */
    .text-color-primary {
        color: #217aae; /* Passe diese Farbe an dein Farbschema an */
    }

    /* Liste der Unternehmenswerte */
    .our-values ul {
        padding-left: 0;
    }

    .our-values li {
        font-size: 1.1rem;
        line-height: 1.6;
        padding-left: 20px;
        position: relative;
    }

    .our-values li::before {
        content: "✔";
        color: #217aae;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    /* Responsive Spalten */
    @media (max-width: 768px) {
        .our-services .row {
            display: flex;
            flex-direction: column;
        }
    }



    /* Hintergrundfarbe für die Kundenbewertungs-Sektion */
    .customer-reviews-section {
        background-color: #f8fafc; /* Sanftes Hellgrau als Hintergrundfarbe */
        padding: 3rem 0;
    }

    /* Styling für die Bewertungs-Karten */
    .review-card {
        background-color: white;
        border: 1px solid #e0e7ec;
        transition: box-shadow 0.3s ease-in-out;
    }

    /* Hover-Effekt für die Bewertungskarten */
    .review-card:hover {
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Kundenavatar Bild */
    .review-avatar {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    /* Styling für Bewertungs-Titel */
    .review-author {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }

    /* Styling für Bewertungs-Text */
    .review-text {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Sternebewertung */
    .review-rating .fa-star,
    .review-rating .fa-star-half-alt,
    .review-rating .fa-star-o {
        margin-right: 5px;
    }


    /* Abschnitt Wrapper */
    .divider-wrapper {
        padding-top: 90px;
        padding-bottom: 90px;
        background-color: #fff;
    }

    .single-divider {
        background-color: #fff;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        border-radius: 8px;
    }

    /* Titel */
    .element-title h6 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
    }

    /* Inhalt */
    .content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }


    /* Responsivität */
    @media (max-width: 768px) {
        .row {
            flex-direction: column;
        }

        .single-divider {
            margin-bottom: 20px;
        }
    }

    /* Datenschutzerklärung Styles */
    .privacy-policy-area {
        padding-top: 90px;
        padding-bottom: 90px;
        background-color: #fff;
    }

    .privacy-policy-content {
        background-color: #fff;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .privacy-policy-content h2 {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .privacy-policy-content h3 {
        font-size: 1.5rem;
        margin-top: 20px;
        color: #333;
    }

    .privacy-policy-content p {
        font-size: 1.0rem;
        line-height: 1.6;
        margin-bottom: 13px;
    }

    .privacy-policy-content a {
        color: #217aae;
        text-decoration: none;
    }

    .privacy-policy-content a:hover {
        text-decoration: underline;
    }

    /* AGB Styles */
    .agb-area {
        padding-top: 90px;
        padding-bottom: 90px;
        background-color: #f9f9f9;
    }

    .agb-content {
        background-color: #ffffff;
        padding: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .agb-content h2 {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .agb-content h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }


    .agb-content .table-of-contents {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .agb-content .table-of-contents li {
        margin-bottom: 10px;
    }

    .agb-content .table-of-contents a {
        color: #217aae;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .agb-content .table-of-contents a:hover {
        text-decoration: underline;
    }

    .agb-content h3 {
        font-size: 1.5rem;
        margin-top: 30px;
        color: #217aae;
    }

    .agb-content p {
        font-size: 1.0rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }


    .datacenter-section {
        margin-bottom: 40px;
        padding: 20px;

        background-color: #f9f9f9;
    }

    .datacenter-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .gallery {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .gallery-img {
        width: 32%;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .gallery-img:hover {
        filter: grayscale(0%);
    }

    .datacenter-notice {
        background-color: #ffcc00;
        color: #333;
        padding: 10px;
        margin-bottom: 20px;
        text-align: center;
        font-size: 1.2em;
        font-weight: bold;
    }

    .datacenter-features {
        list-style-type: none;
        padding: 0;
    }

    .datacenter-features li {
        margin-bottom: 10px;
        font-weight: 500;
        position: relative;
        padding-left: 25px; /* Abstand für das Häkchen */
    }

    .datacenter-features li::before {
        content: "\2713"; /* Unicode für das Häkchen-Symbol (✓) */
        color: green; /* Farbe des Häkchens */
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 0;
    }


    /* Pricing Section - Dedizierte Server */
    .solution-section {
        background-color: #f9f9f9;
        padding: 40px 0;
    }

    /* Pricing Table Styles */
    .pricing-table {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    .pricing-table:hover {
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    }

    .pricing-table h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: #333;
    }

    .pricing-table .price {
        font-size: 26px;
        font-weight: bold;
        color: #217aae;
        margin-bottom: 15px;
    }

    .pricing-table ul.specifications {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        font-size: 14px;
        color: #555;
    }

    .pricing-table ul.specifications li {
        margin-bottom: 10px;
    }

    .pricing-table ul.specifications small {
        display: block;
        margin-bottom: 15px;
        justify-content: flex-start;
        color: #777;
    }

    /* Button Styles */
    .pricing-table .btn {
        background-color: #0c4364;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .pricing-table .btn:hover {
        background-color: #217aae;
    }


    /* Grundlegende Anpassungen für die Container und Abschnitte */
    .about-delivering-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-title-wrap h3 {
        color: #333; /* Für den Titel der Sektion */
        font-size: 36px;
        font-weight: bold;
        text-transform: uppercase;
    }

    /* Trennlinie (horizontaler Strich) */
    hr.width-50 {
        width: 50%;
        margin: 20px auto;
        border: 1px solid #ccc;
    }

    /* Styling für die Abschnitte Inklusivleistungen und Optionale Leistungen */
    .blue-bg {
        border-radius: 10px;
        padding: 25px;
        min-height: 280px;
        background: #217aae;
    }

    /* Styling für die Hauptüberschriften */
    .blue-bg h4 {
        font-size: 24px;
        color: white;
        margin-bottom: 20px;
        text-align: center;
    }

    .blue-bg i {
        font-size: 32px;
        margin-right: 10px;
    }

    /* Gleichmäßige Anzeige der Feature Container */
    .feature-container {
        padding: 15px;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        background-color: #f9f9f9;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Card-Überschrift und Textstil */
    .feature-container h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-container p {
        font-size: 14px;
        line-height: 1.5;
        color: #666;
    }


    /* Anpassungen für kleinere Bildschirme */
    @media (max-width: 767px) {
        .feature-container {
            flex: 1;
            margin-bottom: 15px;
        }

        .col-md-6 {
            margin-top: 20px;
        }

        .blue-bg {
            min-height: auto;
        }
    }

