/* Center the application form container on the single career page */
.application-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0 auto;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 0.5s ease-in;
}

.job-card-wrapper {
    background: #f4f6fa;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.job-card-header {
    width: 100%;
    height: 260px;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b4a3d1f0?q=80&w=1600&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    color: white;
    position: relative;
    border-radius: 0 0 16px 16px;
    margin-bottom: 10px;
    overflow: hidden;
}

.job-card-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.job-card-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.job-card-header-content h1 {
    margin: 0;
    font-size: 2.2rem;
}

.job-card-meta {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.93;
}

.job-card-main {
    max-width: 900px;
    background: white;
    margin: 0 auto 40px;
    padding: 40px 30px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    position: relative;
    top: -60px;
    color: #111;
}

.job-card-main h2 {
    margin-top: 30px;
}

.job-card-apply-btn {
    display: inline-block;
    margin-top: 40px;
    background: #0066cc;
    color: white;
    padding: 14px 22px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.job-card-apply-btn:hover {
    background: #004a99;
}

@media (max-width: 600px) {
    .job-card-header {
        height: 160px;
        padding: 10px;
    }
    .job-card-header-content h1 {
        font-size: 1.2rem;
    }
    .job-card-main {
        padding: 20px 8px 18px 8px;
    }
}
