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

body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo h1 {
  font-size: 28px;
  color: #0f172a;
}

.logo p {
  font-size: 14px;
  color: #64748b;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #334155;
  font-weight: bold;
}

nav a:hover {
  color: #000;
}

.hero {
  padding: 80px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #0f172a;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: #475569;
  font-size: 18px;
  margin-bottom: 25px;
}

.search-box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

input, textarea, select, button {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

button {
  background: #0f172a;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #1e293b;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.stat-card.large {
  grid-column: span 2;
}

.stat-card p:first-child {
  color: #64748b;
  font-size: 14px;
}

.stat-card h3 {
  font-size: 34px;
  margin-top: 10px;
}

.section {
  padding: 50px 0;
}

.section h3 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.results-info {
  color: #475569;
  margin-bottom: 20px;
  font-weight: bold;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.job-type {
  display: inline-block;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
}

.job-card h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.company {
  color: #475569;
  margin-bottom: 12px;
}

.meta {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.job-card p {
  color: #475569;
}

.job-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.job-buttons .secondary {
  background: white;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.companies {
  background: #0f172a;
  color: white;
  border-radius: 28px;
  padding: 40px;
}

.companies p {
  color: #cbd5e1;
  margin-bottom: 25px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.company-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px;
  border-radius: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card, .contact-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-text {
  color: #64748b;
}

footer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 25px 0;
  margin-top: 30px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.no-results {
  background: white;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: #64748b;
}

@media (max-width: 992px) {
  .hero-grid,
  .jobs-grid,
  .company-grid,
  .features,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 34px;
  }

  nav {
    width: 100%;
  }

  nav a {
    margin: 0 15px 0 0;
    display: inline-block;
  }
}
