/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
}

body .page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('../img/bild8.jpg') center 72px/contain no-repeat !important;
    color: #ffffff;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #495057;
    line-height: 1.6;
}

/* Jobs Section */
.jobs {
    padding: 80px 0;
    background-color: #ffffff;
}

.jobs h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.why-us h2,
.jobs h2 {
    color: #2c3e50 !important;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2c3e50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.job-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.job-type {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details {
    margin-bottom: 20px;
}

.job-details p {
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.job-description h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

.job-description p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.job-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.job-description li {
    color: #495057;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.job-description li:before {
    content: "•";
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
}



/* Application Process */
.application {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.application h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    background: #2c3e50 !important;
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%) !important;
    color: #fff !important;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step p {
    color: #495057;
    line-height: 1.6;
}





/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-header h3 {
        font-size: 1rem;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
        line-height: 1.3;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-info {
        padding: 20px;
    }
    body .page-header {
        background-position: center 100px !important;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .benefit-card,
    .job-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .benefit-card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .jobs-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    .job-card {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Footer mobile Anpassungen */
    .footer {
        padding: 8px 0 4px !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 4px !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 3px !important;
        font-size: 0.95rem !important;
    }
    
    .footer-section p {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    
    .footer-bottom {
        padding-top: 4px !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
    }
} 

.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
} 

.footer-section h3,
.footer-section h4 {
    color: #fff !important;
} 

.page-header h1,
.why-section h2 {
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
} 

.jobs h3 {
    font-family: 'Antenne Regular', Arial, sans-serif !important;
} 