.main-header {
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 20;
  padding-top: 25px;
  box-sizing: border-box;
  background: transparent;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  /*align-items: center;        !* <--- 수직(세로) 중앙정렬 *!*/
  justify-content: space-between;
  padding: 0 44px;
  min-height: 80px;
}

/*.header-logo img {*/
/*  height: 55px;*/
/*  width: auto;*/
/*  filter: brightness(90%) drop-shadow(0 1px 4px rgba(0,0,0,0.18));*/
/*  display: block;*/
/*}*/

.header-logo {
  display: block;
  height: 55px;
  width: 160px;
  background-image: url("../img/new/common/bi_black.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  filter: brightness(90%) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.18));
}


.header-nav{
  display: flex;
  align-items: flex-end; /* 하단 정렬 */
  margin-bottom: 12px;
}
.header-nav ul {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header-nav a {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif; /* 폰트 적용 */
  font-weight: 400;        /* Regular */
  font-size: 20px;         /* 메뉴만 17px */
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  padding: 6px 2px;
  opacity: 0.96;
  transition: color 0.19s, opacity 0.18s;
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
}
.header-nav a:hover {
  color: #ffb050;
  opacity: 1;
}

.header-nav li.active a {
  font-weight: 700;
  position: relative;
  color: #222; /* 흰 배경일 경우: #222 / 어두운 배경이라면 #fff 유지 가능 */
}

.header-nav li.active a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background-color: #e58f33;
}

/* 반전 헤더: 흰 배경 + 검정 텍스트 */
.main-header.white-header {
  background: #fff;
}

.white-header .header-nav a {
  color: #222;
}

.white-header .header-nav a:hover {
  color: #e58c00;
}

.white-header .header-logo img {
  filter: none; /* drop-shadow 제거 */
}


body {
  margin: 0;
  font-family: 'Pretendard', sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}


.main-section7 {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.section7-bg {
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 92px 0 82px 0;
}

.section7-content {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 6px 42px rgba(50,18,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 40px 48px 40px;
  text-align: center;
}

.section7-title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1.2px;
  line-height: 1.5;
}

.section7-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 74px;
  line-height: 1.6;
}

.section7-btn {
  display: inline-block;
  padding: 18px 44px;
  background: #fff;
  color: #6f1c11;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 44px;
  box-shadow: 0 2px 18px rgba(110, 70, 20, 0.14);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  letter-spacing: -0.5px;
}
.section7-btn:hover {
  background: #ffe7c2;
  color: #774b10;
}


.main-footer {
  width: 100%;
  padding: 0 0 34px 0;
  background: transparent;  /* 별도 배경 없이 섹션 배경 그대로 */
  position: relative;
  z-index: 2;
}

.footer-line {
  width: 92vw;
  max-width: 1600px;
  height: 2px;
  background: rgba(255,255,255,0.7);  /* 연한 흰색 가로선 */
  margin: 0 auto 34px auto;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  line-height: 2.1;
  opacity: 0.96;
  text-shadow: 0 1px 10px rgba(30,10,0,0.23);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 92px;
  margin: 0 auto 10px auto;
  display: block;
}

.footer-info {
  margin: 2px 0;
  color: #fff;
  opacity: 0.93;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.footer-copy {
  margin-top: 14px;
  font-size: 14px;
  color: #fff;
  opacity: 0.82;
  letter-spacing: 0.01em;
}