/* 
 * physionexum - Main Stylesheet
 * Erstellt für das Franchise-System für Physiotherapie
 */

/* ===== Fonts ===== */
@font-face {
    font-family: 'HK Grotesk';
    src: url('../font/HKGrotesk-Regular.woff2') format('woff2'),
         url('../font/HKGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../font/HKGrotesk-Bold.woff2') format('woff2'),
         url('../font/HKGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../font/HKGrotesk-Medium.woff2') format('woff2'),
         url('../font/HKGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../font/HKGrotesk-Light.woff2') format('woff2'),
         url('../font/HKGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===== Variables ===== */
:root {
    --primary: #B063FF;
    --primary-dark: #9040E0;
    --secondary: #1A0046;
    --accent: #214AE7;
    --dark: #1E1E2A;
    --darker: #17171F;
    --primary-light: #F7F5FF;
    --secondary-light: #F0F2FF;
    --light: #FFFFFF;
    --gray: #626270;
    --light-gray: #F5F5F5;
    --card-bg: #FFFFFF;
    --border-radius: 8px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'HK Grotesk', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

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

/* ===== Gradient Text ===== */
.text-gradient, .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: var(--light);
    box-shadow: 0 4px 15px rgba(176, 99, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(176, 99, 255, 0.5);
    transform: translateY(-2px);
    color: var(--light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

/* Spezifischer Stil für den Button in der Navigation */
.nav-link.btn-primary-outline {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    margin-left: 10px;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.nav-link.btn-primary-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: var(--transition);
}

.nav-link.btn-primary-outline:hover {
    color: var(--light) !important;
    transform: translateY(-2px);
}

.nav-link.btn-primary-outline:hover::before {
    width: 100%;
}

.nav-link.btn-primary-outline::after {
    display: none; /* Entfernt den Unterstrich-Effekt der normalen Links */
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--light);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--light);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 40px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand .logo {
    height: 35px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 30, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Menüpunkte in der Mitte */
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    color: var(--dark) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary) !important;
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* Rechts ausgerichteter Button */
.navbar-button {
    margin-left: 15px;
}

/* Spezifischer Stil für den Button in der Navigation */
.nav-link.btn-primary-outline {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    margin-left: 10px;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

/* Mobile Anpassungen */
@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 70px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        max-width: 100%;
    }
    
    .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: var(--light);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Anpassungen für dunkle Texte im hellen mobilen Menü */
    .navbar-collapse .nav-link {
        color: var(--dark) !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
    }

    /* Anpassungen für den Button im mobilen Menü */
    .navbar-collapse .btn-primary-outline {
        color: var(--primary) !important;
        border: 1px solid var(--primary);
        background: transparent;
    }

    .navbar-collapse .btn-primary-outline:hover {
        background: var(--primary);
        color: var(--light) !important;
    }

    /* Button im mobilen Menü */
    .navbar-button.d-none.d-lg-block {
        display: none !important;
    }

    /* Button für mobiles Menü hinzufügen */
    .navbar-collapse .navbar-nav:after {
        content: "";
        display: block;
        margin: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse .navbar-nav:after {
        content: "";
        display: block;
        width: 100%;
    }

    .navbar-collapse .btn-primary-outline {
        display: inline-flex;
        margin: 10px 0 0 0;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--primary-light);
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image:hover {
    transform: translateY(-10px);
}

.career-stats-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.career-stats .stat-item {
    padding: 15px;
    border-bottom: 1px solid rgba(176, 99, 255, 0.1);
}

.career-stats .stat-item:last-child {
    border-bottom: none;
}

.career-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Services Section ===== */
.services-section {
    padding: 80px 0;
}

.section-header h6 {
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-subtext {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(180, 100, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
    border-color: rgba(180, 100, 255, 0.3);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(176, 99, 255, 0.1) 0%, rgba(33, 74, 231, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: invert(36%) sepia(78%) saturate(1702%) hue-rotate(248deg) brightness(97%) contrast(101%);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.service-card .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: auto;
}

.service-card .btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--darker);
    padding: 120px 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.about-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== Standort-spezifische Styles ===== */
.specializations {
    margin-top: 20px;
}

.specializations h5 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.specializations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-tag {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .specializations {
        margin-top: 15px;
    }
    
    .spec-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: var(--dark);
    padding: 120px 0;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(26, 0, 70, 0.2) 0%, rgba(17, 17, 17, 0.2) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(176, 99, 255, 0.1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(176, 99, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    padding-top: 20px;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 100px;
    line-height: 1;
    opacity: 0.1;
    color: var(--primary);
}

.testimonial-content p {
    font-style: italic;
    color: var(--light);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-info h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Blog Section ===== */
.blog-section {
    background-color: var(--darker);
    padding: 120px 0;
}

.blog-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(176, 99, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(176, 99, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border-top-left-radius: var(--border-radius);
    z-index: 2;
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(176, 99, 255, 0.3);
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--light);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    align-items: center;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 6px;
}

.blog-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--dark);
    transition: var(--transition);
    min-height: 62px;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-tags {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.blog-tag:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transform: translateX(0);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.read-more::after {
    content: '→';
    margin-left: 6px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* ===== Blog Articles ===== */
.blog-articles {
    background-color: var(--light);
    padding: 80px 0;
}

.blog-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(176, 99, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(176, 99, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(176, 99, 255, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border-top-left-radius: var(--border-radius);
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--light);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    align-items: center;
    order: 2;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 6px;
}

.blog-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--dark);
    transition: var(--transition);
    min-height: 0;
    order: 1;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
    order: 3;
    line-height: 1.6;
}

.blog-tags {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    order: 4;
}

.blog-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
    font-weight: 500;
}

.blog-tag:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transform: translateX(0);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: auto;
    order: 5;
    text-decoration: none;
    align-self: flex-start;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 30px;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--light);
    background-color: var(--primary);
    transform: translateY(-3px);
}

.read-more:hover::after {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .blog-card {
        margin-bottom: 30px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/about-image.jpg') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    padding: 80px 0 40px;
    position: relative;
    color: var(--light);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(176, 99, 255, 0) 0%, 
        rgba(176, 99, 255, 0.5) 50%, 
        rgba(176, 99, 255, 0) 100%);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
    display: inline-block;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 42, 0.95);
    color: var(--light);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none; /* Wird durch JS auf 'flex' gesetzt */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: slideUp 0.5s ease-out forwards;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    .cookie-content p {
        font-size: 14px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-buttons .btn {
        flex-grow: 1;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 70px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        max-width: 100%;
    }
    
    .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: var(--light);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .career-stats-card {
        margin-top: 30px;
    }
    
    .career-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .career-stats .stat-item {
        border-bottom: none;
        padding: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 140px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 13px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .hero-image {
        margin-top: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .section-subtext {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    
    .service-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        margin-top: 30px;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .value-item {
        margin-bottom: 25px;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 130px 0 50px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-section h6 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 12px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header h6 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .section-subtext {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .service-card {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content h6 {
        font-size: 0.85rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .value-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* ===== Page Header ===== */
.page-header {
    padding: 180px 0 80px;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.page-header .lead {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Services Overview ===== */
.services-overview {
    padding: 100px 0;
    background-color: var(--dark);
}

.services-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* ===== Detailed Services ===== */
.detailed-services {
    padding: 100px 0;
    background-color: var(--darker);
}

.service-row {
    margin-bottom: 100px;
}

.service-content {
    padding: 0 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--gray);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
}

.service-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background-color: var(--dark);
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(176, 99, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176, 99, 255, 0.3);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 99, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background-color: var(--secondary-light);
}

.accordion-item {
    background-color: var(--light);
    border: 1px solid rgba(176, 99, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light);
    color: var(--dark);
    font-weight: 600;
    border: none;
    padding: 20px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(176, 99, 255, 0.05);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(176, 99, 255, 0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B063FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: var(--light);
    color: var(--gray);
    padding: 20px;
}

/* Leistungsseite Styling */
.service-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(180, 100, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
    border-color: rgba(180, 100, 255, 0.3);
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-list.compact li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.detailed-service-section {
    padding: 80px 0;
}

.detailed-service-section:nth-child(odd) {
    background-color: rgba(20, 20, 30, 0.4);
}

.detailed-service-section .service-image {
    overflow: hidden;
    border-radius: 8px;
}

.detailed-service-section .service-image img {
    transition: transform 0.5s ease;
}

.detailed-service-section:hover .service-image img {
    transform: scale(1.05);
}

.bg-light {
    background-color: rgba(25, 25, 35, 0.5) !important;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .detailed-service-section {
        padding: 60px 0;
    }
    
    .service-content {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .service-card {
        margin-bottom: 20px;
    }
    
    .detailed-service-section {
        padding: 40px 0;
    }
}

/* Feinere Abstände */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.service-card h3 {
    font-size: 1.35rem;
}

/* Bestehende Stile verbessern */
.feature-card {
    height: 100%;
}

/* ===== Karriereseite Styling ===== */
.career-overview {
    background-color: var(--primary-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.career-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.career-overlay {
    background-color: rgba(10, 10, 10, 0.85);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 20px;
}

.career-stats {
    display: flex;
    justify-content: space-around;
}

.career-stats .stat-item {
    text-align: center;
}

.career-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-stats .stat-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
}

.benefit-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Career Categories */
.career-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(176, 99, 255, 0.1);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.career-card:hover {
    transform: translateY(-10px);
    border-color: rgba(180, 100, 255, 0.3);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
}

.career-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 99, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.career-card-icon i {
    font-size: 30px;
    color: var(--primary);
}

.career-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.career-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* ===== Job Card Styling ===== */
.job-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(180, 100, 255, 0.1);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
    border-color: rgba(180, 100, 255, 0.3);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--primary-light);
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(180, 100, 255, 0.1);
}

.job-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.job-meta .job-category {
    background: rgba(176, 99, 255, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    color: var(--primary);
}

.job-apply-btn {
    margin-top: 10px;
}

.job-details {
    padding: 25px;
    background-color: var(--card-bg);
}

.job-description h5 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.job-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--gray);
}

.job-description ul li {
    margin-bottom: 8px;
}

.job-apply-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(176, 99, 255, 0.1);
}

/* Partner Platform Section */
.partner-platform-section {
    background-color: var(--darker);
}

/* Initiative Application Section */
.initiative-application-section {
    background-color: var(--secondary-light);
}

@media (max-width: 991px) {
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-apply-btn {
        margin-top: 15px;
        align-self: flex-start;
    }
    
    .career-stats {
        flex-wrap: wrap;
    }
    
    .career-stats .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .career-stats .stat-item {
        width: 100%;
    }
}

/* ===== Section Backgrounds ===== */
.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

/* ===== Card Styles ===== */
.service-card, .career-card, .feature-card, .testimonial-card, .blog-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(180, 100, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover, .career-card:hover, .feature-card:hover, .testimonial-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 60, 255, 0.15);
    border-color: rgba(180, 100, 255, 0.3);
}

/* Button Styles in Cards */
.service-card .btn-outline, 
.career-card .btn-outline, 
.feature-card .btn-outline,
.blog-card .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: auto;
}

.service-card .btn-outline:hover, 
.career-card .btn-outline:hover, 
.feature-card .btn-outline:hover,
.blog-card .btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* ===== Feature List ===== */
.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--gray);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    padding: 80px 0 40px;
    position: relative;
    color: var(--light);
}

.footer h5 {
    color: var(--light);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p a {
    color: var(--light);
    text-decoration: none;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 42, 0.95);
    color: var(--light);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none; /* Wird durch JS auf 'flex' gesetzt */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: slideUp 0.5s ease-out forwards;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    .cookie-content p {
        font-size: 14px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-buttons .btn {
        flex-grow: 1;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 70px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        max-width: 100%;
    }
    
    .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: var(--light);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .career-stats-card {
        margin-top: 30px;
    }
    
    .career-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .career-stats .stat-item {
        border-bottom: none;
        padding: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 140px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 13px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .hero-image {
        margin-top: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .section-subtext {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    
    .service-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        margin-top: 30px;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .value-item {
        margin-bottom: 25px;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 130px 0 50px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-section h6 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 12px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header h6 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .section-subtext {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .service-card {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content h6 {
        font-size: 0.85rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .value-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* ===== IMPRESSUM & DATENSCHUTZ SEITEN ===== */
.impressum-hero,
.datenschutz-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
}

.impressum-hero .hero-title,
.datenschutz-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impressum-hero .hero-subtitle,
.datenschutz-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Styling */
.content-section {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.content-block h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-block ul {
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Impressum spezifische Styles */
.impressum-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.impressum-info h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Inhaltsverzeichnis */
.toc-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.toc-list {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.toc-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Alert Styling für Widerspruchsrecht */
.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.alert-info h3 {
    color: #0c5460;
    margin-top: 0;
    margin-bottom: 1rem;
}

.alert-info p {
    color: #0c5460;
    margin-bottom: 0.5rem;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.cta-block h2 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.contact-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.contact-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impressum-hero .hero-title,
    .datenschutz-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .impressum-info,
    .contact-info,
    .toc-block {
        padding: 1.5rem;
    }
    
    .cta-block {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== ENDE IMPRESSUM & DATENSCHUTZ SEITEN ===== */

/* ===== Cookie Modal (Einstellungsfenster) ===== */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 42, 0.7);
    backdrop-filter: blur(3px);
    z-index: 2000; /* Sehr hoher z-index */
    display: none; /* Gesteuert durch JS */
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 650px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 2001; /* Höher als das Overlay */
    display: none; /* Gesteuert durch JS, wird zu 'flex' */
    flex-direction: column;
    max-height: 90vh;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: var(--primary-light);
    color: var(--secondary);
}

.cookie-modal-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.cookie-option {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}
.cookie-option:hover {
    background-color: #f8f9fa;
}
.cookie-option:last-child {
    border-bottom: none;
}
.cookie-option-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
    margin-left: 2.2rem;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background-color: #f8f9fa;
}

.form-check.form-switch {
    display: flex;
    align-items: center;
}

.form-check-label {
    margin-left: 0.5rem;
}


/* ===== Responsive Design Anpassungen ===== */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}