* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #FFFFFF;
  color: #2C3E50;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-section {
  padding: 40px 0;
  background: #FFFFFF;
  text-align: center;
}
.hero-section h1 {
  font-size: 3em;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-section p {
  font-size: 1.25em;
  color: #6C757D;
  max-width: 800px;
  margin: 0 auto;
}
.jobs-section {
  padding: 0 0 120px;
  background: #FFFFFF;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}
.section-header h2 {
  font-size: 2.2em;
  color: #2C3E50;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-header p {
  color: #6C757D;
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 600px;
  margin: 0 auto;
}
.search-container {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.search-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  background: white;
  border: 1px solid #E9ECEF;
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.search-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-box input {
  flex: 1;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 0.95em;
  font-family: 'Inter', sans-serif;
  color: #2C3E50;
  height: 100%;
  font-weight: 400;
}
.search-box input:focus {
  outline: none;
}
.search-box input::placeholder {
  color: #ADB5BD;
  font-weight: 400;
}
.search-box button {
  padding: 0 30px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 0;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  text-align: center;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}
.search-box button:hover {
  background: #0056B3;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: transparent;
}
.job-card {
  background: white;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  border: 1px solid #E9ECEF;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007BFF, #0056B3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #DEE2E6;
}
.job-card:hover::before {
  opacity: 1;
}
.job-header {
  flex: 1;
  margin-bottom: 24px;
}
.job-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #007BFF;
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-title {
  font-size: 1.25em;
  font-weight: 400;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 60px;
  font-family: 'Inter', sans-serif;
}
.apply-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375em;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.apply-link:hover {
  color: #0056B3;
  gap: 12px;
  text-decoration: underline;
}
.apply-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.apply-link:hover svg {
  transform: translateX(2px);
}
.no-jobs {
  text-align: center;
  padding: 100px 40px;
  background: white;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #E9ECEF;
}
.no-jobs-icon {
  font-size: 4em;
  margin-bottom: 20px;
  opacity: 0.3;
}
.no-jobs-text {
  color: #6C757D;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.6;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.job-card {
  animation: fadeIn 0.4s ease forwards;
  opacity: 0;
}
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5em;
  }
  .hero-section p {
    font-size: 1.125em;
  }
  .section-header h2 {
    font-size: 2em;
    letter-spacing: 1px;
  }
  .section-header p {
    font-size: 1em;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .search-box {
    flex-direction: column;
    height: auto;
    gap: 0;
    border-radius: 8px;
  }
  .search-box input {
    border-bottom: 1px solid #E9ECEF;
    height: 48px;
    border-radius: 8px 8px 0 0;
  }
  .search-box button {
    height: 48px;
    width: 100%;
    border-radius: 0 0 8px 8px;
  }
  .container {
    padding: 0 20px;
  }
  .job-card {
    min-height: auto;
    padding: 24px;
  }
  .job-title {
    font-size: 1.125em;
    min-height: auto;
  }
  .job-meta {
    font-size: 0.8125em;
  }
}