body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
}

.jobs-section {
  padding: 50px 20px;
}

.jobs-header {
  margin-bottom: 40px;
}

.jobs-header h2 {
  font-size: 2.5rem;
  color: #c62828;
}

.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.job-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.job-item:hover {
  transform: translateY(-5px);
}

.jobs-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.jobs-form h3 {
  margin-bottom: 20px;
  color: #333;
}

.jobs-form input,
.jobs-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.jobs-form button {
  background: #c62828;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.jobs-form button:hover {
  background: #a01818;
}
