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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a222e;
  background: #f8fafb;
  line-height: 1.6;
}

a {
  color: #1e73be;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  background: #1a222e;
  color: #fff;
  padding: 12px 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #ffb347;
}

.hero-section {
  background: linear-gradient(110deg, #ffb347 0%, #1e73be 100%);
  color: #fff;
  padding: 70px 0 50px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: #1a222e;
  color: #ffb347;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  margin-top: 10px;
}

.cta-btn:hover {
  background: #ffb347;
  color: #1a222e;
}

.about-section {
  background: #fff;
  padding: 60px 0;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1 1 360px;
}

.about-img {
  flex: 1 1 260px;
  text-align: right;
}

.about-img img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(30, 115, 190, 0.07);
}

.jobs-section {
  padding: 60px 0;
  background: #f7f7fa;
}

.job-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(30, 115, 190, 0.06);
  margin-top: 18px;
}

.job-meta {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.job-card h3 {
  margin-top: 18px;
  color: #1e73be;
}

.stack-list {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.apply-prompt {
  margin-top: 20px;
  font-weight: 600;
}

.how-section {
  background: #fff;
  padding: 60px 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 140px;
  background: #f8fafb;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 1px 6px rgba(30, 115, 190, 0.07);
}

.step-num {
  display: block;
  background: #1e73be;
  color: #fff;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 34px;
}

.contact-section {
  background: #f7f7fa;
  padding: 60px 0 30px 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 12px;
}

.contact-section .contact-note {
  margin-top: 20px;
  color: #555;
}

.footer {
  background: #1a222e;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 800px) {
  .about-flex,
  .steps {
    flex-direction: column;
    align-items: stretch;
  }

  .about-img {
    text-align: center;
    margin-top: 18px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 40px 0 30px 0;
  }

  .job-card {
    padding: 24px 10px;
  }
  .container {
    padding: 0 10px;
  }
  .nav-links {
    gap: 12px;
  }
}