.page-header {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-blue) 50%, var(--ocean-blue) 100%);
    color: white;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--silver);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--platinum);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.95;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.filters-section {
    background: #f8fafc;
    padding: 2rem 0;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--silver);
}

.jobs-section {
    padding: 4rem 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--silver), var(--platinum));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.15);
    border-color: var(--silver);
}

.job-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--platinum), var(--light-silver));
    color: var(--navy-blue);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.job-title {
    font-size: 1.75rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-salary {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.job-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-contract {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.job-apply-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--silver) 0%, var(--platinum) 100%);
    color: var(--navy-blue);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, var(--platinum) 0%, var(--white) 100%);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .filters {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }
}
