/* 컨텐츠1 - 이성희 */
/* 전체 배경 및 폰트 설정 (필요시 common.css로 이동) */
body {
  font-family: "Google Sans Flex", "Do Hyeon", sans-serif;
  color: #ffffff;
}

/* 1. 헤더 영역 */
.header {
  position: absolute; /* 배너 위에 띄우기 위해 절대 위치 사용 */
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  /* 마우스 오버 시 배경색 변환 애니메이션 */
  transition: background-color 0.4s ease;
}
/* 헤더에 마우스를 올리면 배경색이 짙은 네이비로 변경 */
.header:hover {
  background-color: #232e3f;
}

/* --- 서브메뉴와 열을 맞추기 위해 gap과 너비 고정 --- */
.global-nav ul {
  display: flex;
  gap: 100px; /* 기존 100px에서 조금 줄임 */
}

.global-nav li {
  width: 180px; /* 서브메뉴와 위아래 중앙 정렬을 맞추기 위한 고정 너비 */
  text-align: center;
}

.global-nav a {
  color: #a1a1aa;
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: #ffffff;
}

/* =========================================
   2. 메가 메뉴 (슬라이드 다운) 스타일
========================================= */
.mega-menu {
  position: absolute;
  top: 100%; /* 헤더의 바로 아래에 위치 */
  left: 0;
  width: 100%;
  background-color: #232e3f;
  border-top: 2px solid rgba(255, 255, 255, 0.05); /* 은은한 구분선 */

  /* 숨김 처리 및 슬라이드 다운 애니메이션 준비 */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

/* 헤더 영역에 마우스를 올리면 메가메뉴 펼쳐짐 */
.header:hover .mega-menu {
  max-height: 500px; /* 콘텐츠가 들어갈 충분한 높이 */
  opacity: 1;
  visibility: visible;
  padding: 40px 0 50px 0;
}

.mega-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

/* --- 왼쪽 콘텐츠 (이미지 + 텍스트) --- */
.mega-left {
  width: 350px; /* 이미지 영역 너비 */
}

.mega-news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 24px;
}

.mega-left p {
  color: #3dd37b; /* 포인트 그린 색상 */
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  word-break: keep-all;
}

/* --- 오른쪽 콘텐츠 (서브 메뉴) --- */
.mega-right {
  display: flex;
  gap: 100px; /* 메인 메뉴(.global-nav ul)의 gap과 동일하게 설정 */
}

.sub-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 180px; /* 메인 메뉴(.global-nav li)의 너비와 동일하게 설정 */
  align-items: center; /* 메인 메뉴 텍스트 기준 가운데 정렬 */
}

.sub-list a {
  color: #a1a1aa;
  font-size: 28px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.sub-list a:hover {
  color: #ffffff; /* 마우스 오버 시 흰색 강조 */
}

.header-container {
  max-width: 1200px; /* 최대 너비 1200px 제한 */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 30px; /* 로고 이미지에 맞게 조절*/
}

.global-nav ul {
  display: flex;
  gap: 100px;
}

.global-nav a {
  color: #a1a1aa; /* 옅은 회색 */
  font-size: 28px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: #ffffff; /* 마우스 오버 시 흰색으로 강조 */
}

/* 2. 메인 배너 영역 */
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../images/Hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-container {
  position: relative;
  max-width: 1200px; /* 최대 너비 1200px 제한 */
  margin: 50px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  width: 100%;
  margin-top: 50px;
}

/* --- 왼쪽 텍스트 콘텐츠 --- */
.banner-text-content {
  flex: 1;
  max-width: 663px;
}

.badge-text {
  color: #3dd37b; /* 이스트캠프 포인트 그린 컬러 */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.title-xl {
  font-size: 72px;
  line-height: 125%;
  margin-bottom: 50px;
  word-break: keep-all; /* 단어 단위로 줄바꿈 */
}

.title-xl .highlight {
  color: #fe7102; /* 오렌지색 하이라이트 */
}

/* 특징 리스트 */
.feature-list {
  display: flex;
  gap: 34px;
  margin-bottom: 64px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #3dd37b; /* 초록색 테두리 */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 199, 122, 0.05);
  flex-shrink: 0;
}

.icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.desc-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desc-title {
  font-size: 16px;
  color: #ffffff;
}

.desc-sub {
  font-size: 12px;
  color: #a1a1aa;
}

/* 지원하기 버튼 */
.cta-wrap {
  display: inline-block;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  padding: 13px 25px;
  border: 1px solid #3dd37b; /* 초록색 테두리 */
  border-radius: 15px;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  background-color: rgba(0, 199, 122, 0.1); /* 마우스 오버 시 살짝 초록빛 배경 */
  transform: translateY(-0.5px); /* 위로 살짝 올라가는 애니메이션 */
}

.arrow-icon {
  margin-left: 21px;
  font-size: 24px;
}

.banner-image img {
  /* 이미지가 너무 클 경우를 대비해 최대 너비 제한 */
  max-height: 1920px;
  object-fit: contain;
}
/* =========================================
   과정 상세 정보 섹션 (프론트엔드)
========================================= */
.course-info-section {
  max-width: 1200px; /* 배너보다 조금 좁은 너비로 중앙 정렬 */
  margin: 80px auto;
  padding: 0;
}

/* 1. 상단: 썸네일 + 정보 박스 영역 */
.course-summary-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

/* 왼쪽 썸네일 이미지 */
.course-thumbnail {
  flex-shrink: 0;
  width: 280px; /* 이미지 너비 고정 */
}

.course-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px; /* 모서리 둥글게 */
  display: block;
}

/* 오른쪽 정보 박스 */
.course-info-box {
  background-color: #232e3f; /* 짙은 네이비색 배경 */
  border-radius: 15px;
  padding-top: 10px;
  padding-bottom: 3px;
  padding-left: 60px;
  padding-right: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-title {
  font-size: 45px;
  color: #ffffff;
  opacity: 90%;
  margin-bottom: 24px;
}

.course-desc {
  font-size: 28px;
  color: #ffffff;
  opacity: 90%;
  margin-bottom: 24px;
}

/* 기술 스택 태그 (HTML, CSS 등) */
.tech-stack-list {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.tech-stack-list .tag {
  background-color: #3dd37b; /* 이스트캠프 녹색 */
  color: #1b4137; /* 어두운 글씨색 */
  padding: 8px 18px;
  border-radius: 15px; /* 알약 형태 */
  font-size: 24px;
}

/* 오렌지색 지원하기 버튼 (상단 배너 버튼과 분리 적용) */
.course-info-box .btn-wrap {
  width: 100%;
}

.course-info-box .btn-apply {
  display: block;
  width: 50%;
  background-color: #fe7102; /* 오렌지색 */
  color: #ffffff;
  opacity: 90%;
  text-align: center;
  padding: 10px;
  border-radius: 15px; /* 약간 둥근 사각형 */
  font-size: 16px;
  border: none; /* 메인 배너의 테두리 속성 제거 */
  transition: background-color 0.3s ease;
}

.course-info-box .btn-apply:hover {
  background-color: #d96600; /* 마우스 오버 시 색상 어둡게 */
  transform: none; /* 메인 배너의 위로 뜨는 효과 제거 */
}

/* 2. 하단: 상세 정보 4구역 그리드 */
.course-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4칸으로 균등 분할 */
  gap: 24px; /* 카드 사이 간격 */
}

.detail-card {
  background-color: #232e3f; /* 짙은 네이비색 배경 */
  border-radius: 15px;
  padding: 26px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-label {
  opacity: 90%;
  font-size: 20px;
}
.detail-value {
  color: #ffffff;
  opacity: 90%;
  font-size: 20px;
}

/* 컨텐츠2 - 맹예진 */

section {
  padding: 72px 0;
}

.features-box {
  width: 1041px;
}
.slogan,
.section-jobstatus {
  color: black;
}
.section-features,
.section-compare {
  background: var(--light-grey);
}
.section-features {
  height: 192px;
}
.section-features h2 {
  margin-bottom: 48px;
}
.section-features ul li {
  background: var(--deep-green);
  border-radius: 10px;
  color: var(--white);
  width: 483px;
  padding: 12px 0;
  margin: 24px 0;
  text-align: center;
}

.section-company h2 {
  margin-bottom: 24px;
}
.section-company ul {
  margin: 48px 0;
}
.company-introduction li {
  width: 282px;
  background: var(--light-green);
  border-radius: 10px;
  padding: 18px 0;
}

/* 차별점 */

.section-compare {
  height: 600px;
}
.section-compare .orange {
  margin-bottom: 24px;
}
.section-compare .left {
  width: 458px;
}
.compare-box {
  width: 665px;
  margin-top: 48px;
}
.compare-target {
  background: #d9d9d9;
  width: 281px;
  height: 48px;
  border-radius: 20px 20px 0 0;
  margin-top: 48px;
}
.compare-est {
  background: var(--orange);
  color: var(--white);
  width: 384px;
  height: 96px;
  border-radius: 20px 20px 0 0;
}
.compare-list {
  width: 665px;
  margin-top: 24px;
  margin-left: 281px;
}
.compare-text {
  display: flex;
  align-items: center;
  gap: 98px;
}
.circle-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-jobstatus {
  overflow: hidden;
}
.section-jobstatus div:first-child > * {
  margin-bottom: 24px;
}
.company-status {
  padding: 70px 0;
  animation-name: movement;
  animation-duration: 15s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

@keyframes movement {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section-portfolio {
  background: var(--deep-green);
}
.section-portfolio > div {
  color: var(--white);
}
.section-portfolio h2 {
  margin-bottom: var(--base-unit);
}
.section-portfolio h3 {
  margin-top: calc(var(--base-unit) * 3);
  margin-bottom: calc(var(--base-unit) * 2);
}

.portfolio-img {
  position: relative;
  height: 456px;
}
.portfolio-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 6s linear;
}
.portfolio-img img.active {
  opacity: 1;
}
/* 한 영역 안에서 이미지가 계속 바뀌는 효과는 순수 CSS로는 구현이 어려워 js 학습 후 진행 */

.section-instructors {
  background: var(--deep-green);
}
.section-instructors > div {
  color: var(--white);
}

.orange {
  color: var(--orange);
}
.alyac {
  color: var(--alyac-green);
}

/* 컨텐츠3 - 장진혁 */
.section-testimonial > div,
.section-instructors > div,
.section-lecture > div,
.section-curriculum > div {
  gap: calc(var(--base-unit) * 2);
}
.section-lecture,
.section-curriculum {
  padding: calc(var(--base-unit) * 3) 15px;
}

/* 수강 후기 부분 */
.testimonial-list {
  gap: var(--base-unit);
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.testimonial-wrapper {
  width: 1173px;
  overflow: hidden;
  margin: 0 auto;
}

.testimonial-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: var(--light-grey);
  border: 1px solid var(--grey-green);
  border-radius: 10px;

  gap: calc(var(--base-unit) * 2);
  padding: calc(var(--base-unit) * 2) var(--base-unit);
  width: 375px;
  height: calc(var(--base-unit) * 22);

  text-align: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-button {
  width: 45px;
  height: 45px;
  color: var(--grey-green);
  background: none;
  border: none;
  cursor: pointer;
}

/*강사진 부분  */
.section-instructors {
  background: var(--deep-green);
}

.instructors-card {
  width: 390px;
  height: 380px;
  gap: 10px;
}

.instructors-card p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.personal-history :nth-child(1) {
  font-family: var(--font-body);
  font-weight: 500; /* Medium */
  font-size: 20px;
  line-height: 1.2; /* 24/20 */
}
.personal-history :nth-child(2) {
  flex: 1px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.instructors-text {
  width: 1200px;
  padding-left: 78px;
}

/* 수강 종류 부분 */
.card-text-box p {
  color: var(--background-grey);
}

.card-text-box {
  padding: var(--base-unit);
  gap: 8px;
}

.lecture-card {
  background: var(--white);
  border: 1px solid var(--grey-green);
  border-radius: 12px;

  overflow: hidden;
  box-sizing: border-box;
}

.lecture-grid {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 커리큘럼 부분 */
.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
  overflow: visible;
}
.curriculum-list li {
  width: 272px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;

  background: var(--white);
  border: 1px solid var(--grey-green);
  border-radius: 12px;
  box-shadow: 0 4px 6px var(--light-grey);

  padding: var(--base-unit) var(--base-unit) 52px var(--base-unit);
  box-sizing: border-box;
}

.curriculum-list li > p {
  color: var(--background-grey);
  padding: 0 4px 0 0;
}

.curriculum-list li > span.material-icons {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.curriculum-overlay {
  background: var(--background-grey);
  border-radius: 9999px;
  padding: 4px 12px;
}
.curriculum-table {
  width: 1136px;
  padding: 40px 40px;
  gap: calc(var(--base-unit) * 2);
  box-sizing: border-box;
}

.curriculum-table-heading-text {
  gap: 16px;
}

.curriculum-table-heading-text p,
.curriculum-table-heading-text h3 {
  margin: 0;
}

.curriculum-table-heading-text p {
  white-space: nowrap;
}

.curriculum-table-heading {
  gap: 12px;
}
.curriculum-table-body {
  background: var(--white);
}

.content-left-overlay {
  color: var(--background-grey);
  width: calc(var(--base-unit) * 2);
  height: calc(var(--base-unit) * 2);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-left-overlay p {
  width: calc(var(--base-unit) * 2);
  height: calc(var(--base-unit) * 2);
  text-align: center;
}

.table-body-content-left {
  width: calc(var(--base-unit) * 14);
  gap: 16px;
}

.table-body-content-left li.active {
  background-color: var(--grey-green);
  border: 2px solid var(--light-green);
  box-sizing: border-box;
  border-radius: 12px;
}

.table-body-content-left li.active .content-left-overlay {
  background: var(--light-green);
  color: var(--white);
}

.table-body-content-left li.active .content-left-text p:first-child {
  color: var(--white);
}

.table-body-content-left li.active .material-icons {
  color: var(--white);
}

.table-body-content-left li {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(var(--base-unit) * 5);
  gap: var(--base-unit);
  padding: var(--base-font);
  box-sizing: border-box;
  border: 2px solid var(--grey-green);
  border-radius: 12px;
}

.table-body-content-left li .material-icons {
  margin-left: auto;
}
.content-left-text {
  width: 200px;
}

.content-left-text p:last-child {
  padding-top: 4px;
}
.table-body-content-left li .content-left-text {
  flex-grow: 1;
}

.content-right-overlay {
  width: 120px;
  color: var(--white);
  background: var(--light-green);
  border-radius: 6px;
  padding: 4px 12px;
  box-sizing: border-box;
}
.table-body-content-right {
  gap: 32px;
  background: var(--white);
  border-radius: 12px;
  padding: calc(var(--base-unit) / 2);
  border: 1px solid var(--grey-green);
}

.table-body-content-right-top {
  gap: var(--base-font);
}
.table-body-content-right-bottom {
  gap: calc(var(--base-unit) / 2);
  padding-top: var(--base-unit);
  box-sizing: border-box;
}
.table-body-content-right-bottom-top {
  gap: calc(var(--base-font) * 0.5);
}

.table-body-content-right-bigicon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--light-green);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.table-body-content-right-bottom-content-list > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--base-unit);
  box-sizing: border-box;
}

.table-body-content-right-bottom-content-list > div > p {
  padding-top: 4px;
}

.table-body-content-right-text {
  width: 170px;
}

.table-body-content-right-bottom-mid {
  gap: var(--base-font);
  padding-bottom: calc(var(--base-font) * 0.5);
}

.table-body-content-right-foot {
  padding: calc(var(--base-unit) * 2 / 3);
  background: var(--grey-green);
  border-radius: 12px;
}

.curriculum-bh32 {
  height: 32px;
}

.orange {
  color: var(--orange);
}

.light-green {
  color: var(--light-green);
}

.background-grey {
  color: var(--background-grey);
}

/* 컨텐츠4 - 주성문 */
/* Section Base */
.section-benefits .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px; /* 피그마의 Gap과 동일 (요소 사이 간격) */
}

.section-benefits .container .section-title-area {
  text-align: center;
  color: #012b22;
}

/* Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 개별 카드 기본 스타일 */
.benefit-card {
  background-color: #f8f9fa; /* 연한 회색 배경 */
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #baccbf; /* grey-green 테두리 */
  height: 100%;
  box-sizing: border-box;
}

.benefit-card .material-icons {
  margin-bottom: 4px;
  font-size: 32px;
  margin-bottom: 16px;
  color: #111;
}

.benefit-card .benefit-title {
  margin: 0;
  color: #1b4137;
}

.benefit-card .benefit-desc {
  color: #232e3f;
  margin: 0;
  width: 100%;
}
/* 1번 카드: 가로로 긴 큰 카드 (교육비 0원) */
.benefit-card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background-image: url("../images/money.png"); /* 배경의 돈 아이콘 이미지 */
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-size: 150px;
  padding: 40px;
  background-color: white;
  color: #545f72;
  align-items: flex-start;
}

.benefit-card--large .benefit-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c2ebdd;
  color: #284e43;
  padding: 4px 12px;
  border-radius: 9999px;
  width: fit-content;
}

.benefit-card--large .benefit-title {
  color: #012b22;
}

.benefit-card--large .benefit-desc {
  color: #545f72;
}

.benefit-card--large .price-info {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  padding-top: 24px;
}

.benefit-card--large .original-price {
  text-decoration: line-through;
  color: #baccbf;
  margin-right: 12px;
}

.benefit-card--large .discount-price {
  color: #ff6b00; /* 오렌지 포인트 */
}

/* 2번 카드: 세로로 긴 다크 카드 (훈련 장려금) */
.benefit-card--dark {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #1d352f; /* 딥그린 배경 */
  color: #fff;
}

.benefit-card--dark .benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.benefit-card--dark .benefit-content .material-icons {
  background-color: #fff;
  color: #000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 30px;
}

.benefit-card--dark .benefit-title {
  color: #ffffff;
}
.benefit-card--dark .benefit-desc {
  color: #baccbf;
}

.benefit-card--dark .highlight-text {
  margin-top: auto;
  color: #e9ff70; /* 형광 그린 포인트 */
}
/* 3. 학습장비 지원: 2행 1열 */
.benefits-grid li:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

/* 4. 자부담금(그린): 2행 2열 */
.benefit-card--green {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  background-color: #98e4ba;
}

/* 5. 취업 지원 */
.benefits-grid li:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 3 / 4; /* 시안 캡처본 위치 기준 */
}

/* 하단 액션 버튼 영역 */
.benefits-action {
  text-align: center;
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background-color: #ff6b00;
  color: #fff;
  padding: 16px 48px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e66000;
}
/* benefits section css */
/* recruitment section css */
.section-recruitment .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.section-recruitment .container .section-title-area {
  text-align: center;
  color: #012b22;
}

.section-recruitment .section-subtitle {
  color: #3dd37b; /* light green */
  text-align: center;
}

/* 모집 보드 (좌측 메뉴 + 우측 컨텐츠) */
.recruitment-board {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto auto auto;

  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden; /* 배경색이 넘치지 않게 */
  background-color: #fff;
}

.recruitment-board .menu-item {
  grid-column: 1;
  background-color: #1d352f;
  padding: 40px 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.recruitment-board.menu-item:nth-child(1) {
  grid-row: 1;
}

.recruitment-board .menu-item:nth-child(2) {
  grid-row: 2;
}

.recruitment-board .menu-item:nth-child(3) {
  grid-row: 3;
}

.menu-title {
  color: #fff;
}
.menu-desc {
  color: #85ada0;
}

.content-header,
.recruitment-check-list,
.process-steps {
  grid-column: 2/4;
  padding: 32px;
  background: #fff;
}

/* 컨텐츠 상단 (뱃지, 날짜, D-day) */
.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 양 끝 정렬 */
  padding-bottom: 32px;
}
.badge--gray {
  background-color: #e2e3e0;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 12px;
}

.d-day-text {
  color: #ff6b00; /* 오렌지색 강조 */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* 체크리스트 */
.recruitment-check-list {
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-check {
  color: #2ecc71; /* 체크 아이콘 색상 */
}

.process-steps {
  display: flex;
  gap: 32px;
  list-style: none;
}

.step {
  position: relative;
  flex: 1;
  display: flex;
}

.step-box {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 4px;
  padding: 24px 12px;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

/* 최종 합격 박스 강조 */
.step--final .step-box {
  background-color: #2ecc71;
  color: #fff;
}

.arrow {
  position: absolute;
  width: 24px;

  right: -29px;
  top: 50%;
  transform: translateY(-50%); /* 자신의 높이를 기준으로 수직 중앙 정렬 */

  z-index: 1;

  color: #adb5bd;
  font-size: 24px;
}
/* //recruitment section css */
/* faq section css */
.section-faq .container {
  position: relative;
}

.section-faq .container .section-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
/* FAQ 리스트 스타일 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* 질문 영역 (Trigger) */
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.question-text {
  color: #1b4137;
  transition: color 0.3s;
}

.arrow-icon {
  color: #48bb78; /* light green */
  transition: transform 0.3s;
}

/* 답변 영역 */
.faq-answer {
  background-color: #fafafa; /* light gray */
  padding: 32px;
}

.answer-inner {
  color: #4a5568;
}

/* 리스트 및 상세 스타일 */
.answer-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.answer-check-list li {
  margin-bottom: 15px;
}

.sub-bullet-list {
  list-style: none;
  padding-left: 10px;
  margin-top: 5px;
}

.notice-text {
  color: #718096;
  margin-top: 20px;
}

/* --- 활성화 상태 (Active) --- */
.faq-item--active {
  border-color: #48bb78; /* 활성 상태 테두리 강조 */
}

.faq-item--active .question-text {
  color: #2f855a; /* alyak green */
}

/* "더 많은 질문 보기" 버튼 */
.btn-text {
  position: absolute;
  top: 48px;
  right: 0; /* 우측 끝으로 밀착 */

  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1b4137;
  text-decoration: none;
}
/* //faq section css */
/* quick-menu css */
/* 퀵메뉴 전체 컨테이너 */
.quick-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 102px;
  background-color: rgba(61, 211, 123, 50%);
  border-radius: 15px;
  color: #ffffff;
  z-index: 1000;

  padding-top: 35px;
  padding-bottom: 20px;

  /* Flexbox 설정: 자식 요소들을 세로로 정렬 */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}

/* 상단 타이틀 (QUICK MENU) */
.menu-header {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(254, 113, 2, 80%);
  width: 85%;
  height: 50px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 13px;
  padding: 5px 0;
}

/* 메뉴 리스트 (ul) */
.menu-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;

  /* 메뉴 항목들을 세로로 나열 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 메뉴 항목 사이의 구분선 */
.menu-list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-list li::after {
  content: "";
  width: 70%;
  border-bottom: 2px dashed #ffffff;
  margin: 5px 0;
}

/* 개별 메뉴 링크 버튼 */
aside .menu-item {
  width: 100%;
  padding: 15px 0;
  color: #ffffff;

  /* 아이콘과 텍스트를 세로로 정렬 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* 아이콘과 텍스트 사이 간격 */
  transition: transform 0.2s;
}

aside .menu-item:hover {
  transform: scale(1.05);
}
aside .menu-info:hover {
  transform: scale(1.05);
}

/* 아이콘 공통 스타일 */
.icon {
  display: block;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* 개별 아이콘 경로 */
.icon-apply {
  background-image: url("../images/icon-apply.png");
}
.icon-lecture {
  background-image: url("../images/icon-lecture.png");
}
.icon-edu {
  background-image: url("../images/icon-edu.png");
}
.icon-benefit {
  background-image: url("../images/icon-benefit.png");
}
.icon-cs {
  background-image: url("../images/icon-cs.png");
}

/* 하단 정보 섹션 (전화번호 등) */
.menu-info {
  width: 100%;
  font-style: normal;
  text-align: center;
  margin-top: 10px;

  /* 내용물 세로 정렬 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-phone {
  background-image: url("../images/icon-phone.png");
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

.menu-info .label {
  font-size: 14px;
  margin: 5px 0;
}

.menu-info .phone-num {
  color: #ffffff;
  margin-bottom: 10px;
}

/* 컨텐츠5 - 최호찬 */
/* employment section css  */
.section-employment {
  width: 100%;
  height: auto;
  padding: calc(var(--base-unit) * 3) 0;
  background: var(--deep-green);
  display: flex;
  justify-content: center;
  text-align: center;
}
.section-employment .container {
  color: var(--white);
  position: relative;
}
.text-orange {
  color: var(--orange);
}
.section-employment h1:first-child {
  margin-bottom: var(--base-unit);
}
.section-employment h2:nth-of-type(2) {
  margin-bottom: 40px;
}
.box-employment {
  width: 1200px;
  height: 240px;
  background: var(--navy);
  padding: 60px;
  margin: calc(var(--base-unit) * 3) 0;
  box-sizing: border-box;
}
.q-employment,
.a-employment {
  justify-content: space-evenly;
}
.section-employment .container {
  position: relative;
}
.section-employment .est-name {
  width: 400px;
  height: 60px;
  background: var(--light-green);
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 235px;
}
/* navigation section css */
.section-navigation {
  width: 100%;
  height: auto;
  background: var(--background-grey);
}
.section-navigation .container {
  height: 48px;
  color: var(--white);
}
.section-navigation .container ul {
  gap: 50px;
}
.section-navigation .container a:hover {
  color: var(--light-green);
}

/* visual section css */
.section-visual {
  width: 100%;
  padding: calc(var(--base-unit) * 3) 0;
}
.section-visual .container {
  width: 1200px;
  margin: 0 auto;
  border: solid 1px var(--grey-green);
  border-radius: 16px;
  padding: calc(var(--base-unit) * 3) 10px;
}
.figure-visual {
  flex: 0 0 580px;
  margin: 0;
}
.figure-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}
.content-visual {
  flex: 0 1 500px;
}

.title-visual {
  margin-bottom: 24px;
  max-width: 9em;
}

.desc-visual {
  margin-right: 40px;
  margin-bottom: 40px;
  word-break: keep-all;
}
.visual-status {
  gap: 16px;
}
.visual-status-text {
  gap: 4px;
}

.avatar-group {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.avatar-group li {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -16px;
}
.avatar-group li:first-child {
  margin-left: 0;
  background: #e2f0e8;
}
.avatar-group li:nth-child(2) {
  background: #cbe1d3;
}
.avatar-group li:nth-child(3) {
  background: #94b8a2;
}
.avatar-group li.visual-count {
  background: #1b4123;
  color: #fff;
}

.status-text strong {
  display: block;
}

/* footer style css */
footer {
  background-color: #e2e8f0;
  padding: var(--base-unit);
  color: var(--navy);
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--base-font) * 3);
  align-items: flex-end;
}
.footer-nav {
  display: flex;
  padding-bottom: var(--base-unit);
  gap: 30px;
}
.social-icons {
  gap: var(--base-font);
  margin-bottom: 32px;
  justify-content: flex-end;
}
.social-icons a {
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: var(--mint-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons img {
  width: 24px;
  height: auto;
  display: block;
}
/* 컨텐츠6 - 김태현 */
