@charset "utf-8";

body {
	font-family: 'Helvetica', sans-serif;
	margin: 0;
	background: #f9f9f9;
  }
  header {
	background: #0d1117;
	color: #fff;
	padding: 30px 20px;
	text-align: center;
  }
  header h1 {
	font-size: 2.2rem;
  }
  .cta {
	background: #2ea44f;
	padding: 10px 20px;
	display: inline-block;
	color: white;
	text-decoration: none;
	font-weight: bold;
	border-radius: 8px;
	margin-top: 15px;
  }
  .features, .jobs, .steps, .faq {
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
  }
  .features h2, .jobs h2, .steps h2, .faq h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
  }
  .feature-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
  }
  .feature-item {
	flex: 1 1 45%;
	background: white;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .job-listing {
	background: white;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .step-list {
	list-style: decimal;
	padding-left: 20px;
  }
  footer {
	text-align: center;
	padding: 30px;
	background: #eaeaea;
	font-size: 0.9rem;
	color: #555;
  }

