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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f5f7fa;
  color: #333;
  scroll-behavior: smooth;
}

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

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

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

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

nav a:hover {
  text-decoration: underline;
}

.hero-image {
  background: url('recruit.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  background-attachment: fixed;
  border-radius: 10px;
  margin: 30px auto;
}

.hero-image h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-image p {
  font-size: 20px;
}


/* Service Section */
.service-detail {
  background: #fff;
  padding: 60px 20px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-detail h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #1e90ff;
}

.service-detail p {
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #f0f4ff;
  padding: 20px;
  border-left: 5px solid #1e90ff;
  border-radius: 10px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e90ff;
}

.service-item p {
  font-size: 16px;
  color: #555;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
