/* QUILDIES Unternehmensberatung - Komplett neues Design */

/* Reset & Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f9fa;
    font-size: 16px;
}

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

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #800000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #800000;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    opacity: 0.1;
    z-index: 1;
}

.skyline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #800000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    background: rgba(128, 0, 0, 0.1);
    border-radius: 50px;
    display: inline-block;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.article-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.article-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #800000;
}

.article-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.02));
    border-left: 4px solid #800000;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    position: relative;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.highlight-box strong {
    color: #800000;
    font-weight: 700;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.sidebar-box h3 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #800000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
}

.contact-info a {
    color: #800000;
    text-decoration: none;
    font-weight: 500;
}

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

.cta-box {
    background: linear-gradient(135deg, #800000, #a00000);
    color: white;
    text-align: center;
}

.cta-box h3 {
    color: white;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #495057;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #800000;
    font-weight: bold;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #800000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.2);
}

.service-icon i {
    color: white;
    font-size: 32px;
}

.service-item h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #6c757d;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #800000;
}

.footer-text {
    font-size: 14px;
    color: #6c757d;
}

/* Page Header für Unterseiten */
.page-header {
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Overview */
.services-overview {
    margin: 50px 0;
}

.services-overview h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #800000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-highlight-icon i {
    color: white;
    font-size: 20px;
}

.service-highlight-content h3 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-highlight-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Stats Box */
.stats-box {
    background: linear-gradient(135deg, #800000, #a00000);
    color: white;
}

.stats-box h3 {
    color: white;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Philosophy Box */
.philosophy-box {
    background: #f8f9fa;
    border-left: 4px solid #800000;
}

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

.philosophy-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

.philosophy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #800000;
    font-weight: bold;
}

/* Einkaufsberatung - spezifische Styles */

/* Optimization Areas */
.optimization-areas {
    margin: 50px 0;
}

.optimization-areas h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.area-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #800000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.area-icon i {
    color: white;
    font-size: 24px;
}

.area-card h3 {
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.optimization-description {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #800000;
}

.optimization-description p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

/* Negotiation Focus Highlight */
.negotiation-focus {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.02));
    border-left: 4px solid #800000;
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800000, #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 20px;
}

.highlight-header h3 {
    color: #800000;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    margin: 50px 0;
}

.process-steps h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #800000, #a00000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Benefits Box */
.benefits-box {
    background: #f8f9fa;
    border-left: 4px solid #28a745;
}

/* Factors Box */
.factors-box {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.05), rgba(23, 162, 184, 0.02));
    border-left: 4px solid #17a2b8;
}

.factors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.factor-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.factor-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.factor-icon i {
    color: white;
    font-size: 14px;
}

.factor-item span {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Referenzeinholung - Corporate Design konform */

/* Intro Scenario */
.intro-scenario {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-icon i {
    color: white;
    font-size: 22px;
}

.scenario-header h2 {
    color: #2c2c2c;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.intro-scenario p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

/* Research Methods */
.research-methods {
    margin: 50px 0;
}

.research-methods h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.method-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #800000;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon i {
    color: white;
    font-size: 24px;
}

.method-content h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.method-content p {
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
    display: inline-block;
}

.methods-conclusion {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.methods-conclusion p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

/* Additional Research */
.additional-research {
    margin: 50px 0;
}

.additional-research h2 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.research-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.research-item:hover {
    transform: translateX(5px);
}

.research-icon {
    width: 45px;
    height: 45px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.research-icon i {
    color: white;
    font-size: 18px;
}

.research-text h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.research-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Expertise Highlight */
.expertise-highlight {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-icon i {
    color: white;
    font-size: 28px;
}

.expertise-text h3 {
    color: #2c2c2c;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.expertise-text p {
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar - Corporate Design konform */
.advantages-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.applications-box {
    background: #f8f9fa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.application-item:hover {
    background: rgba(255, 255, 255, 1);
}

.application-icon {
    width: 35px;
    height: 35px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.application-icon i {
    color: white;
    font-size: 14px;
}

.application-item span {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Discretion Box */
.discretion-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    text-align: center;
    border: 1px solid #e9ecef;
}

.discretion-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.discretion-icon i {
    color: white;
    font-size: 24px;
}

.discretion-box h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
}

.discretion-box p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Offene Stellen - Corporate Design konform */

/* Job Search Info */
.job-search-info {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.search-icon {
    width: 50px;
    height: 50px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-icon i {
    color: white;
    font-size: 22px;
}

.search-header h2 {
    color: #2c2c2c;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.search-content p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.email-link {
    color: #800000;
    text-decoration: none;
    font-weight: 600;
}

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

/* Recruitment Process */
.recruitment-process {
    margin: 50px 0;
}

.recruitment-process h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #800000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Job Categories */
.job-categories {
    margin: 50px 0;
}

.job-categories h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-item {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon i {
    color: white;
    font-size: 24px;
}

.category-item h4 {
    color: #2c2c2c;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.category-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Experience Note */
.experience-note {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.note-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    color: white;
    font-size: 20px;
}

.note-text h3 {
    color: #2c2c2c;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.note-text p {
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar - Offene Stellen */
.application-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.tips-box {
    background: #f8f9fa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 255, 255, 1);
}

.tip-icon {
    width: 35px;
    height: 35px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-icon i {
    color: white;
    font-size: 14px;
}

.tip-text h5 {
    color: #2c2c2c;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.tip-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Kontakt - Corporate Design konform */

/* Contact Main Info */
.contact-main-info {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.company-header h2 {
    color: #2c2c2c;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 600;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.detail-icon i {
    color: white;
    font-size: 18px;
}

.detail-content h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.detail-content p {
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.detail-content a {
    color: #800000;
    text-decoration: none;
    font-weight: 600;
}

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

/* Consultation Offer */
.consultation-offer {
    background: #fafafa;
    border-left: 4px solid #800000;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon i {
    color: white;
    font-size: 24px;
}

.offer-text h3 {
    color: #2c2c2c;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.offer-text p {
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    margin: 50px 0;
}

.contact-methods h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.method-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    color: white;
    font-size: 28px;
}

.method-content h4 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.method-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-action {
    margin-top: 20px;
}

.contact-button {
    display: inline-block;
    background: #800000;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

/* Business Hours */
.business-hours {
    margin: 50px 0;
}

.business-hours h2 {
    color: #2c2c2c;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
}

.hours-grid {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.95rem;
}

.hours-item .time {
    color: #495057;
    font-weight: 500;
}

/* Sidebar - Kontakt */
.quick-contact-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.services-box {
    background: #f8f9fa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

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

.services-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.services-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-list a:hover {
    color: #800000;
}

.location-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.location-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-icon {
    width: 45px;
    height: 45px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.location-icon i {
    color: white;
    font-size: 18px;
}

.location-info h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.location-info p {
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.location-link {
    color: #800000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Anfahrt - Corporate Design konform */

/* Transport Sections */
.transport-section {
    margin: 50px 0;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.transport-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon i {
    color: white;
    font-size: 26px;
}

.transport-header h2 {
    color: #2c2c2c;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

/* External Link */
.external-link {
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #800000;
}

.bahn-link {
    color: #800000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

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

/* Route Sections */
.route-section {
    margin-bottom: 35px;
}

.route-section h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 15px;
    border-left: 3px solid #800000;
}

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

.route-list li {
    background: #fafafa;
    margin-bottom: 8px;
    padding: 12px 15px;
    border-radius: 4px;
    border-left: 3px solid #e9ecef;
    color: #495057;
    line-height: 1.5;
    transition: border-color 0.3s ease;
}

.route-list li:hover {
    border-left-color: #800000;
}

.route-list li.destination {
    background: #fafafa;
    border-left-color: #800000;
    font-weight: 600;
    color: #800000;
}

/* Parking Tip */
.parking-tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.tip-icon {
    width: 45px;
    height: 45px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-icon i {
    color: white;
    font-size: 18px;
}

.tip-content h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.tip-content p {
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

/* Sidebar - Anfahrt */
.address-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.address-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-icon {
    width: 45px;
    height: 45px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.address-icon i {
    color: white;
    font-size: 18px;
}

.address-info h4 {
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.address-info p {
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.transport-box {
    background: #f8f9fa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

.option-icon {
    width: 35px;
    height: 35px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i {
    color: white;
    font-size: 14px;
}

.option-info h5 {
    color: #2c2c2c;
    margin-bottom: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.option-info p {
    color: #6c757d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.parking-box {
    background: #fafafa;
    border-left: 4px solid #800000;
    border: 1px solid #e9ecef;
}

.parking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.parking-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

.parking-icon {
    width: 35px;
    height: 35px;
    background: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.parking-icon i {
    color: white;
    font-size: 14px;
}

.parking-info h5 {
    color: #2c2c2c;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.parking-info p {
    color: #6c757d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive für Anfahrt */
@media (max-width: 768px) {
    .transport-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .transport-section {
        padding: 25px 20px;
    }
    
    .parking-tip {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .address-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .transport-option,
    .parking-option {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .transport-section {
        padding: 20px 15px;
    }
    
    .route-section h3 {
        font-size: 1.1rem;
    }
    
    .parking-tip {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-item {
        padding: 25px 20px;
    }
    
    .offer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .location-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .contact-main-info,
    .consultation-offer {
        padding: 20px;
    }
    
    .method-item {
        padding: 20px;
    }
    
    .hours-grid {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-item {
        padding: 20px 15px;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .search-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .job-search-info,
    .experience-note {
        padding: 20px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .research-areas {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .research-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .expertise-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .scenario-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .method-card {
        padding: 25px 20px;
    }
    
    .intro-scenario,
    .methods-conclusion,
    .expertise-highlight {
        padding: 20px;
    }
    
    .research-item {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .area-card {
        padding: 20px 15px;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
    }
    
    .area-icon i {
        font-size: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .highlight-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .optimization-description,
    .negotiation-focus {
        padding: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .services-overview h2 {
        font-size: 1.8rem;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-highlight-icon {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .service-highlight {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .sidebar-box {
        padding: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .main-content {
        padding: 50px 0;
    }
    
    .services {
        padding: 50px 0;
    }
}