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

:root {
    --primary-color: #20B2AA; /* Türkis/Grün */
    --primary-dark: #1a9b94;
    --primary-light: #4dd4cc;
    --primary-soft: #e0f7f5; /* Helles Mint/Soft-Türkis für Hintergründe */
    --text-dark: #2c3e50;
    --text-medium: #34495e; /* Dunkleres Petrol/Blau-Grau für Überschriften */
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-very-light: #fafbfc; /* Off-White für abwechselnde Sections */
    --gray-border: #e0e0e0;
    --gray-border-soft: #e8ecef; /* Dezente Linien */
    --accent-warm: #95a5a6; /* Warmes Grau für Akzente */
    --accent-blue: #6c8eb8; /* Sanftes Blau für Akzente */
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 6px 24px rgba(32, 178, 170, 0.15);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Kontaktleiste Header */
.contact-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 12px 0;
    font-size: 14px;
}

.contact-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.contact-item:hover {
    color: var(--primary-color);
    background-color: var(--primary-soft);
    transform: translateX(2px);
}

.contact-item svg {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    min-height: 120px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: var(--primary-soft);
}

.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--primary-soft);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.btn-primary-small {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.2);
}

.btn-primary-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.btn-outline-small {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 14px;
    background-color: transparent;
}

.btn-outline-small:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.2);
}

.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.25);
}

.btn-primary-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.35);
}

.btn-outline-large {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 18px 36px;
    font-size: 18px;
    background-color: transparent;
    border-radius: 8px;
}

.btn-outline-large:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.25);
}

/* Hero Bereich */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-image: url('../chatgpt-image-15.-dez.-2025-23_54_12-edited.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 128, 110, 0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 60px 0;
}

.hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-buttons .btn-primary-large:hover {
    background-color: var(--gray-light);
}

.hero-buttons .btn-outline-large {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline-large:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Services Hero Bereich (Unsere Leistungen) */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../b6327fab-6d16-405a-9e15-1a3f678bd00d.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 178, 170, 0.25);
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    width: 100%;
}

.services-hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.services-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

/* Beratung Hero Bereich */
.beratung-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../2ABC46FD-F604-4749-BA33-9C3678570D38.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
}

.beratung-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 178, 170, 0.15);
}

.beratung-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    width: 100%;
}

.beratung-hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.beratung-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.beratung-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

.beratung-hero-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

/* Über uns Hero Bereich */
.ueber-uns-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../B0096F91-0EFB-4C2C-901A-351ACC827FE5.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
}

.ueber-uns-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 178, 170, 0.15);
}

.ueber-uns-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    width: 100%;
}

.ueber-uns-hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.ueber-uns-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.ueber-uns-hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

.ueber-uns-hero-slogan {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

/* Karriere Hero Bereich */
.karriere-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../066A0891-EED4-4292-935A-6FA3285B8729.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
}

.karriere-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 178, 170, 0.15);
}

.karriere-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    width: 100%;
}

.karriere-hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.karriere-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

/* Einführung */
.intro {
    padding: 100px 0;
    background-color: var(--gray-very-light);
    transition: background-color 0.3s ease;
}

.intro-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-medium);
    font-weight: 700;
    letter-spacing: -0.4px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Vorteile */
.advantages {
    padding: 100px 0;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-medium);
    font-weight: 700;
    letter-spacing: -0.4px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.advantage-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-border-soft);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.advantage-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.advantage-card h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    padding: 0;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

/* CTA Bereich */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    transition: background 0.3s ease;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary-large:hover {
    background-color: var(--gray-light);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.slogan {
    font-style: italic;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bpa-logo {
    max-height: 34px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-top: 10px;
    opacity: 0.95;
    display: block;
}

/* Formulare */
.form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
    border: 1px solid var(--gray-border-soft);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-border-soft);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 8px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.radio-group input[type="radio"] {
    width: auto;
}

.form-submit {
    margin-top: 30px;
}

/* Content Seiten */
.content-section {
    padding: 100px 0;
    transition: background-color 0.3s ease;
}

.content-section:nth-child(even) {
    background-color: var(--gray-very-light);
}

.content-section:nth-child(odd) {
    background-color: var(--white);
}

.content-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-medium);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Zentrierte Überschrift auf Intensivpflege-Seite */
.content-section .container > h1:first-child {
    text-align: center;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-medium);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-section .highlight-box {
    background-color: var(--primary-soft);
    padding: 35px;
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.content-section .highlight-box:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(2px);
}

/* Ambulante Pflege Abschnitt - Container-Eigenschaften */
.ambulante-pflege-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid var(--gray-border);
    box-sizing: border-box;
}

.ambulante-pflege-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

/* Bilder innerhalb von Containern */
.content-section img,
.advantage-card img,
.intro img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Verhindere, dass Inhalte über Container hinausragen */
.content-section,
.intro,
.advantages,
.cta-section {
    overflow-x: hidden;
    width: 100%;
}

/* Sicherstellen, dass alle direkten Kinder innerhalb der Container bleiben */
.content-section > .container > *,
.intro > .container > *,
.advantages > .container > *,
.cta-section > .container > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Body/HTML keine Abstände oberhalb */
    body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    html {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Kontaktleiste KOMPLETT ausblenden - inklusive aller Inhalte */
    .contact-bar {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: static !important;
        top: auto !important;
    }

    /* Alle Unterelemente der Kontaktleiste ebenfalls ausblenden */
    .contact-bar-content {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact-info {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact-item {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact-text {
        display: none !important;
    }

    .header-buttons {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header-buttons .btn {
        display: none !important;
    }

    /* Navigation direkt oben positionieren - keine Abstände */
    .main-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Hero-Bereich direkt nach Navigation - keine Abstände */
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .logo img {
        height: 90px;
        width: auto;
    }

    .nav-content {
        padding: 20px 0;
        min-height: 90px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ambulante-pflege-section {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 60px;
        padding-top: 40px;
    }

    .ambulante-pflege-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .intro-content h2,
    .section-title {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 16px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .services-hero {
        min-height: 55vh;
    }

    .services-hero-content {
        padding: 60px 0;
    }

    .services-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .services-hero-subtitle {
        font-size: 18px;
        max-width: 100%;
    }

    .beratung-hero {
        min-height: 55vh;
    }

    .beratung-hero-content {
        padding: 60px 0;
    }

    .beratung-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .beratung-hero-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .beratung-hero-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .beratung-hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .ueber-uns-hero {
        min-height: 55vh;
    }

    .ueber-uns-hero-content {
        padding: 60px 0;
    }

    .ueber-uns-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ueber-uns-hero-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .ueber-uns-hero-subtitle {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .ueber-uns-hero-slogan {
        font-size: 18px;
    }

    .karriere-hero {
        min-height: 55vh;
    }

    .karriere-hero-content {
        padding: 60px 0;
    }

    .karriere-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .karriere-hero-title {
        font-size: 36px;
    }

    .intro {
        padding: 70px 0;
    }

    .advantages {
        padding: 70px 0;
    }

    .cta-section {
        padding: 70px 0;
    }

    .content-section {
        padding: 70px 0;
    }

    .ambulante-pflege-section {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 50px;
        padding-top: 30px;
    }

    .ambulante-pflege-title {
        font-size: 26px;
    }

    .footer-bpa-logo {
        max-height: 28px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-hero {
        min-height: 50vh;
    }

    .services-hero-content {
        padding: 50px 0;
    }

    .services-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-hero-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .services-hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.6;
    }

    .beratung-hero {
        min-height: 50vh;
    }

    .beratung-hero-content {
        padding: 50px 0;
    }

    .beratung-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .beratung-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .beratung-hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .beratung-hero-description {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.6;
    }

    .ueber-uns-hero {
        min-height: 50vh;
    }

    .ueber-uns-hero-content {
        padding: 50px 0;
    }

    .ueber-uns-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ueber-uns-hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .ueber-uns-hero-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ueber-uns-hero-slogan {
        font-size: 16px;
    }

    .karriere-hero {
        min-height: 50vh;
    }

    .karriere-hero-content {
        padding: 50px 0;
    }

    .karriere-hero-content .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .karriere-hero-title {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .form-container {
        padding: 24px 16px;
    }

    .content-section .highlight-box {
        padding: 20px;
    }
}

/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 0;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.cookie-modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--gray-border-soft);
}

.cookie-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-medium);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-light);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.cookie-modal-close:hover {
    color: var(--text-dark);
    background-color: var(--gray-light);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-modal-intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-border-soft);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.cookie-category-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-border);
    transition: 0.3s ease;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid var(--gray-border-soft);
    flex-wrap: wrap;
}

.cookie-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10002;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
}

.cookie-notification.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Cookie Styles */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .cookie-banner-buttons .btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-modal-content {
        max-width: 100%;
        margin: 10px;
    }

    .cookie-modal-header {
        padding: 20px;
    }

    .cookie-modal-body {
        padding: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
        padding: 20px;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    .cookie-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 16px;
    }

    .cookie-banner-text h3 {
        font-size: 18px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-buttons .btn {
        width: 100%;
    }

    .cookie-modal-header {
        padding: 16px;
    }

    .cookie-modal-header h2 {
        font-size: 20px;
    }

    .cookie-modal-body {
        padding: 16px;
    }

    .cookie-modal-footer {
        padding: 16px;
    }
}

