/* =============================
   기본 초기화 + 폰트
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background-color: #edb6c2; /* 전체 핑크톤 통일 */
  color: #111;
  line-height: 1.8;
  padding-bottom: 60px;
}

/* =============================
   헤더 (반투명 유리 스타일)
============================= */
header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 25px 40px;
  position: sticky;
  top: 0;
  z-index: 100;

  border-bottom: 1px solid rgba(0,0,0,0.1);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.25s;
}

nav a:hover {
  color: #d46aff;
  border-bottom: 2px solid #d46aff;
}

/* 반응형 */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =============================
   메인 제목
============================= */
.career-section > h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 60px 0 40px;
  color: #111;
}

/* =============================
   진로 섹션 공통 박스 스타일
============================= */
.career-info,
.career-outlook {
  max-width: 1200px;
  margin: auto;

  background: white;
  padding: 50px 50px;
  border-radius: 20px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.13);

  margin-bottom: 50px;
}

/* 섹션 제목 */
.career-info h3,
.career-outlook h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
  position: relative;
}

/* 제목 밑줄 */
.career-info h3::after,
.career-outlook h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  margin-top: 10px;
}

/* 본문 텍스트 */
.career-info p,
.career-outlook p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-top: 10px;
}

/* =============================
   푸터
============================= */
footer {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 80px;
  font-size: 0.95rem;
  color: #111;
}
