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

:root {
    --primary-color: #004838;
    --primary-dark: #073127;
    --secondary-color: #333F3C;
    --accent-color: #E2FB6C;
    --text-primary: #073127;
    --text-secondary: #333F3C;
    --background-light: #EBEDE8;
    --background-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px; /* Runde Ecken für modernes Aussehen */
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: #d8f05c; /* Etwas dunklere Akzentfarbe für Hover */
    border-color: #d8f05c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

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

.logo h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero {
    background: var(--background-white);
    color: var(--text-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(235, 237, 232, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 237, 232, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--background-light);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    background-color: var(--accent-color);
    padding: 0 10px;
    border-radius: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-avatars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--background-white);
}

.hero-avatar.avatar-1 {
    top: 15%;
    left: 10%;
}

.hero-avatar.avatar-2 {
    top: 20%;
    right: 12%;
}

.hero-avatar.avatar-3 {
    bottom: 25%;
    left: 20%;
}

.hero-avatar.avatar-4 {
    bottom: 15%;
    right: 18%;
}



.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background-color: var(--background-white);
}

.partners-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Leistungen */
.leistungen {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-section.reverse .feature-text {
    order: 2;
}

.feature-section.reverse .feature-image {
    order: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.feature-text h3 {
    margin-bottom: 1.5rem;
}

.feature-text ul {
    list-style: none;
    padding-left: 0;
}

.feature-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.feature-text ul li::before {
    content: '✔'; /* Korrektes Häkchen-Symbol */
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .feature-section, .feature-section.reverse {
        grid-template-columns: 1fr;
    }
    .feature-section.reverse .feature-text,
    .feature-section.reverse .feature-image {
        order: initial;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-white) 0%, #f8faf7 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23004838" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.why-us-section .container {
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.why-us-card:hover::before {
    transform: translateX(0);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c8e85f 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(226, 251, 108, 0.3);
}

.why-us-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.why-us-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
    background: var(--accent-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-features li:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
    transition: all 0.2s ease;
}

/* Responsive Why Us */
@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .why-us-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .why-us-card h3 {
        font-size: 1.2rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--background-white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section.alt {
    background-color: var(--background-light);
    color: var(--text-primary);
}

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

.cta-section.alt .cta-content h2 {
    color: var(--primary-dark);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section.alt .cta-content p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--background-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 rgba(0, 51, 102, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.radio-group label {
    margin-bottom: 0;
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 6rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--background-white);
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact-info-container {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Legal Sections */
.legal-section {
    padding: 6rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 16px;
}

.legal-content h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-item {
    margin-bottom: 2rem;
}

.legal-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* About Content Section */
.about-content-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 10px;
}

.timeline-item {
    padding-left: 40px;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 1px;
    background-color: var(--background-light);
    border: 4px solid var(--primary-color);
    top: 5px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    padding: 1rem;
}

.timeline-content h4 {
    margin: 0;
}

/* Impressions Section */
.impressions-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.impressions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.impressions-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}


.jobs-section {
    padding: 6rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.job-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.job-header span {
    font-weight: 500;
    color: var(--text-secondary);
}

.job-body {
    flex-grow: 1;
}

.job-body p {
    margin-bottom: 0.5rem;
}

.job-footer {
    text-align: right;
    margin-top: 1.5rem;
}

/* Application Section */
.application-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 16px;
}

.application-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


/* Responsive Design Anpassungen */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-avatar {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-item::after {
        left: 10px;
    }
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 4rem;
        right: auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
    
    .leistung-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .leistungen,
    .about-preview {
        padding: 3rem 0;
    }
    
    .leistung-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #f8faf7 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23004838" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author div strong {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author div span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Subpage Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23E2FB6C" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--background-white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--background-white);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.content-section {
    padding: 4rem 0;
    background: var(--background-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content {
    background: var(--background-white);
}

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

.content-block h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d8f05c 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.qualification-item {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 72, 56, 0.1);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.qual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.qualification-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.qualification-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--background-white);
}

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

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-box {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 72, 56, 0.1);
}

.sidebar-box h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

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

.stats-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-sidebar-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 8px;
}

.stat-sidebar-item .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-sidebar-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

.service-links li {
    margin-bottom: 0.75rem;
}

.service-links a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-links a::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Responsive Subpage */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

/* About Page Specific Styles */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.mission-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.mission-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 72, 56, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.team-member h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-member p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.timeline-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item-sidebar {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.timeline-item-sidebar .year {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-item-sidebar .event {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.location-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.cert-badge {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .mission-item {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications {
        grid-template-columns: 1fr;
    }
}

/* Job Listings Page Styles */
.jobs-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.job-card {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.job-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--background-white) 0%, #fafbf8 100%);
}

.job-card.featured::before {
    content: '⭐ Empfohlen';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.job-header {
    margin-bottom: 1rem;
}

.job-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--background-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.job-badge.featured {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.job-card h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.job-meta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.job-body {
    margin-bottom: 1.5rem;
}

.job-section {
    margin-bottom: 1rem;
}

.job-section h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.job-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.job-id {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--primary-color);
    color: var(--background-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.benefit-item span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.job-counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.counter-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 8px;
}

.counter-item .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.counter-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.company-culture p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.culture-list {
    list-style: none;
    padding: 0;
}

.culture-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.culture-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive Job Listings */
@media (max-width: 768px) {
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .job-counter {
        grid-template-columns: 1fr;
    }
} 

/* KPIs under section header */
.section-kpis {
    display: inline-grid;
    grid-template-columns: repeat(3, auto);
    gap: 1.25rem;
    margin-top: 1.25rem;
    background: var(--background-white);
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
}
.section-kpis .kpi {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
}
.section-kpis .kpi strong {
    color: var(--primary-dark);
}
.section-kpis .kpi span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
@media (max-width: 600px) {
    .section-kpis {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
} 

/* Square image utility */
.square-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .square-img { max-width: 100%; }
} 

/* Form alerts */
.form-alert { margin: 0 0 1rem; padding: 12px 16px; border-radius: 8px; font-weight: 600; }
.form-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; } 