.job-hero {
            background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .search-section {
            background: white;
            padding: 60px 0;
            border-bottom: 1px solid #E5E7EB;
        }
        
        .search-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #E5E7EB;
        }
        
        .search-form {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 1rem;
            align-items: end;
        }
        
        .search-input {
            position: relative;
        }
        
        .search-input input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .search-input input:focus {
            outline: none;
            border-color: #10B981;
        }
        
        .search-input i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6B7280;
        }
        
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }
        
        .filters-section {
            background: #F9FAFB;
            padding: 40px 0;
        }
        
        .filters-container {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .filter-select {
            padding: 0.5rem 1rem;
            border: 1px solid #D1D5DB;
            border-radius: 6px;
            background: white;
            font-size: 0.9rem;
        }
        
        .active-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-left: auto;
        }
        
        .filter-tag {
            background: #10B981;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .filter-tag button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0;
            font-size: 0.8rem;
        }
        
        .jobs-section {
            background: white;
            padding: 60px 0;
        }
        
        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .jobs-count {
            color: #6B7280;
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .jobs-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .job-card {
            background: white;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .job-card:hover {
            border-color: #10B981;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
            transform: translateY(-2px);
        }
        
        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }
        
        .job-info {
            flex: 1;
        }
        
        .job-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.5rem;
        }
        
        .job-company {
            color: #10B981;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .job-location {
            color: #6B7280;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .job-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .job-action {
            width: 40px;
            height: 40px;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .job-action:hover {
            background: #F3F4F6;
        }
        
        .job-action.saved {
            background: #FEF2F2;
            border-color: #FECACA;
            color: #EF4444;
        }
        
        .job-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .job-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #6B7280;
        }
        
        .job-detail i {
            color: #10B981;
        }
        
        .job-description {
            color: #374151;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .job-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .skill-tag {
            background: #F0FDF4;
            color: #166534;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid #BBF7D0;
        }
        
        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #F3F4F6;
        }
        
        .job-posted {
            color: #9CA3AF;
            font-size: 0.8rem;
        }
        
        .job-apply {
            display: flex;
            gap: 0.5rem;
        }
        
        .apply-btn {
            padding: 0.5rem 1rem;
            background: #10B981;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .apply-btn:hover {
            background: #059669;
        }
        
        .quick-apply {
            background: #F3F4F6;
            color: #374151;
        }
        
        .quick-apply:hover {
            background: #E5E7EB;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }
        
        .pagination button {
            padding: 0.5rem 1rem;
            border: 1px solid #D1D5DB;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination button:hover {
            background: #F3F4F6;
        }
        
        .pagination button.active {
            background: #10B981;
            color: white;
            border-color: #10B981;
        }
        
        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .job-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }
        
        .job-modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 0;
            border-radius: 16px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-header {
            padding: 2rem;
            border-bottom: 1px solid #E5E7EB;
            position: sticky;
            top: 0;
            background: white;
            border-radius: 16px 16px 0 0;
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6B7280;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .modal-close:hover {
            background: #F3F4F6;
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .company-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #F9FAFB;
            border-radius: 12px;
        }
        
        .company-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10B981, #059669);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
        }
        
        .company-details h3 {
            margin-bottom: 0.5rem;
            color: #111827;
        }
        
        .company-meta {
            color: #6B7280;
            font-size: 0.9rem;
        }
        
        .job-requirements {
            margin-bottom: 2rem;
        }
        
        .requirements-list {
            list-style: none;
            padding: 0;
        }
        
        .requirements-list li {
            display: flex;
            align-items: start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: #374151;
        }
        
        .requirements-list i {
            color: #10B981;
            margin-top: 0.25rem;
        }
        
        .application-section {
            background: #F0FDF4;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .application-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .btn-apply {
            flex: 1;
            padding: 1rem;
            background: #10B981;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-apply:hover {
            background: #059669;
        }
        
        .btn-save {
            padding: 1rem;
            background: white;
            color: #10B981;
            border: 2px solid #10B981;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-save:hover {
            background: #10B981;
            color: white;
        }
        
        @media (max-width: 768px) {
            .job-hero {
                padding: 100px 0 60px;
            }
            
            .search-form {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .search-container {
                margin: 0 1rem;
                padding: 1.5rem;
            }
            
            .filters-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .active-filters {
                margin-left: 0;
                margin-top: 1rem;
            }
            
            .jobs-header {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            
            .job-header {
                flex-direction: column;
                gap: 1rem;
            }
            
            .job-actions {
                align-self: flex-end;
            }
            
            .job-details {
                grid-template-columns: 1fr;
            }
            
            .job-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            
            .job-apply {
                justify-content: stretch;
            }
            
            .apply-btn {
                flex: 1;
                text-align: center;
            }
            
            .job-modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }
            
            .company-info {
                flex-direction: column;
                text-align: center;
            }
            
            .application-buttons {
                flex-direction: column;
            }
        }