* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.back-to-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #10b981;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-back svg {
    width: 20px;
    height: 20px;
}

.btn-back:hover {
    background: #10b981;
    color: #fff;
    transform: translateX(-4px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo-header {
    margin-bottom: 1.5rem;
}

.header-logo {
    height: 50px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.job-card {
    background: #fff;
    border: 2px solid #d1fae5;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.job-header h2 {
    font-size: 2rem;
    color: #111827;
    margin: 0;
    font-weight: 700;
}

.job-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.job-details {
    margin-bottom: 1.5rem;
}

.job-details p {
    margin: 0.5rem 0;
    color: #6b7280;
}

.job-description h3 {
    font-size: 1.25rem;
    color: #10b981;
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.job-description ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #374151;
}

.job-description li {
    margin: 0.5rem 0;
}

.job-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-apply {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
