/* =============================
   기본 초기화 + 폰트
============================= */
* {
  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;
  }
}

/* =============================
   페이지 타이틀
============================= */
.page-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 60px 0 40px;
  color: #111;
}

/* =============================
   졸업요건 전체 박스
============================= */
.graduation-info {
  max-width: 1200px;
  margin: auto;
  background: white;
  padding: 60px 50px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* 각 섹션 제목 */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 18px;
  position: relative;
}

/* 제목 밑줄 */
.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  margin-top: 10px;
}

/* 본문 리스트 */
.graduation-info ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.graduation-info li {
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =============================
   이미지 카드
============================= */
.image-container {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.credit-image {
  width: 100%;
  max-width: 850px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =============================
   푸터
============================= */
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;
}
