/* Karriere Hero */
.karriere-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%), 
                url('karriere-hero.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
}

.karriere-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.karriere-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.karriere-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Stellenangebot */
.stellenangebot {
    padding: 5rem 0;
}

.job-posting {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.job-header {
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
}

.job-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
}

.job-meta i {
    margin-right: 0.5rem;
}

.job-content {
    padding: 2rem;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.job-section h3 i {
    margin-right: 0.8rem;
}

.job-section p {
    line-height: 1.6;
    color: var(--gray-dark);
}

.job-section ul {
    list-style: none;
    padding-left: 0;
}

.job-section li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-section li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-footer {
    padding: 1.5rem 2rem;
    background-color: var(--secondary-color);
    font-size: 0.9rem;
}

.job-footer p {
    margin: 0.3rem 0;
}

/* Bewerbungsformular */
.bewerbung {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 i {
    margin-right: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.bewerbungsformular {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.8rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-submit button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.form-submit button i {
    margin-right: 0.8rem;
}

/* Warum bei uns? */
.warum-uns {
    padding: 5rem 0;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vorteil-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
}

.vorteil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vorteil-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.vorteil-card:hover .vorteil-icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.vorteil-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.vorteil-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .karriere-hero h1 {
        font-size: 2rem;
    }
    
    .karriere-hero p {
        font-size: 1.1rem;
    }
    
    .job-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .karriere-hero {
        padding: 5rem 1.5rem;
    }
    
    .job-header,
    .job-content {
        padding: 1.5rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bewerbungsformular {
        padding: 1.5rem;
    }
}