body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 64px;
}
.navbar-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.logo img {
  height: 36px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #0070f3;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url('assets/photo01.jpg') center/cover no-repeat;
  padding: 0 64px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
}
.tags {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tag {
  background: #eee;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.career {
  padding: 112px 64px;
  background: #fff;
}
.career h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.career p {
  margin-bottom: 48px;
}
.career-header {
  padding: 36px;
  background: #fff;
  display: flex;
  flex-wrap:nowrap;
  flex-direction: row;
  align-items: center;
}
.career-list-head {
  padding: 48px;
}
.career-list {
  display: flex;
  flex-wrap:nowrap;
  gap: 32px;
  justify-content: center;
}
.career-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 16px;
}
.career-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}
.career-desc h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 8px 0;
  text-align: center;
}
.career-desc ul {
  padding-left: 20px;
  margin: 0 0 8px 0;
}
.career-desc p {
  font-size: 14px;
  margin: 4px 0;
}

.portfolio {
  background: #f9f9f9;
  padding: 112px 64px;
}
.portfolio h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.portfolio p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 48px;
}
.portfolio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
.portfolio-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 16px;
}
.portfolio-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.portfolio-desc h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 8px 0;
  text-align: center;
}
.portfolio-desc p {
  font-size: 14px;
  margin: 4px 0 8px 0;
  text-align: center;
}
.btn-link {
  color: #0070f3;
  text-decoration: none;
  font-weight: 600;
  margin-top: 40px;
  display: inline-block;
}
.btn-link:hover {
  text-decoration: underline;
}
.portfolio-actions {
  text-align: center;
  margin-top: 48px;
}
.btn-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #000;
  color: #fff;
}
.process {
  display: flex;
  flex-wrap:nowrap;
  gap: 32px;
  justify-content: space-between;
}
.process-list:first-of-type {
  width: 40%;
}
.process-list {
  width: 55%;
  margin: 0;
}
.steps {
  background: #fff;
  padding: 112px 64px;
}
.steps h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 48px;
  text-align: center;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  max-width: 600px;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.timeline img {
  width: 48px;
  height: 48px;
}
.timeline strong {
  font-size: 20px;
  font-weight: 700;
}
.process span {
  border-right:2px solid #333;
  width: 20px;
  height: 48px;
}

.footer {
  background: #fff;
  padding: 80px 64px;
  text-align: center;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #000;
}


@media (max-width: 1200px) {
  .navbar, .hero, .career, .portfolio, .steps, .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .career-list {
    flex-wrap: wrap;
  }
  .career-header {
    flex-direction: column;
  }
  .career-list-head {
    flex-wrap: wrap;
  }
  .career-list, .portfolio-list {
    gap: 32px;
  }
  .process {
    justify-content: center;
    flex-direction: column;
  }
  .process-list:first-of-type {
    width: auto;
  }
  .process-list {
    width: auto;
  }
  .timeline {
    max-width: 400px;
  }
  
} 


@media (max-width: 768px) {
  .navbar, .hero, .career, .portfolio, .steps, .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-links {
    display: none;
  }
  .career-list-head {
    padding: 0px;
  }
} 