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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eef2f5;
  color: #222;
  line-height: 1.8;
}


/* Main Content */
/* .main-content {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}

.main-content section {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

h1, h2 {
  color: #002244;
  margin-bottom: 1rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

a {
  color: #004488;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* Clean summary (no ugly bar) */
.position-detail summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #004488;
  padding: 0.5rem 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: color 0.3s ease;
}

.position-detail summary:hover {
  color: #0066aa;
}

/* Position content clean look */
.position-content {
  margin-top: 0.5rem;
  padding: 1rem;
  border-left: 3px solid #004488;
  background: #f9f9f9;
  border-radius: 4px;
}

/* Apply section link clean and inline */
.apply {
  text-align: center;
}

.apply p {
  font-size: 1rem;
  line-height: 1.6;
}

.apply a {
  color: #004488;
  font-weight: 500;
  text-decoration: underline;
  border: none;
}

.apply a:hover {
  color: #0066aa;
}

