/* Karriere Page Specific Styles */

.hero {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #99f6e4;
    max-width: 800px;
    margin: 0 auto 32px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Company Culture */
.culture-section {
    padding: 80px 0;
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.culture-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 32px;
}

.culture-benefits {
    margin-bottom: 32px;
}

.culture-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.culture-benefit i {
    color: #10b981;
    font-size: 1.1rem;
}

.culture-benefit span {
    color: #374151;
    line-height: 1.5;
}

/* Jobs Section */
.jobs-section {
    padding: 80px 0;
    background: #f9fafb;
}

.jobs-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.job-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.job-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-badge.location {
    background: #e5e7eb;
    color: #374151;
}

.job-badge.type {
    background: #e5e7eb;
    color: #374151;
}

.job-badge.salary {
    background: #d1fae5;
    color: #065f46;
}

.job-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 24px;
}

.job-requirements h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 0.9rem;
}

.job-requirements li i {
    color: #10b981;
    font-size: 1,5rem;
}

.job-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-details-btn {
    background: transparent;
    color: #1e40af;
    font-size: 1rem;
    line-height: 1.4;
    border: none;
    padding: 12px 32px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.job-details-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #1e40af;
    transform: skewX(-10deg);
    z-index: -1;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.job-details-btn:hover {
    color: white;
    transform: translateY(-2px);
}

.job-details-btn:hover::before {
    background: #065f46;
    border-color: #065f46;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    color: #99f6e4;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .culture-benefits {
        text-align: left;
    }
    
    .job-header {
        align-items: flex-start;
    }
    
    .job-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    
    
    
    .cta-title {
        font-size: 2rem;
    }
    
    
}