/* =================== 기본 설정 =================== */
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #fff;
  /* 기본 색상 #1e68e8; */
  min-width: 1400px; /* ✨ 추가된 부분: 아무리 확대해도 이 너비 이하로 찌그러지지 않게 고정합니다. */
}

/* 종합메뉴 열릴 때 body 스크롤 막기 */
body.menu-open {
  overflow: hidden;
}

/* =================== 헤더 =================== */

/* 헤더 베이스 */
header {
  background: white;
  padding: 20px;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* 헤더 내부 컨테이너 */
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =================== 로고 =================== */
.logo img {
  height: 60px;
}

/* =================== 메뉴 =================== */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* 메인 메뉴 리스트 */
.menu {
  list-style: none;
  display: flex;
  gap: 90px;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 20px;
}

/* 개별 메뉴 항목 */
.menu-item {
  position: relative;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s ease;
  white-space: nowrap; /* ✨ 추가된 부분: 글자가 세로로 떨어지거나 줄바꿈 되는 것을 강제로 막습니다. */
}

/* 메뉴에 포인터 위치시 색상 변경 */
.menu-item:hover {
  color: #f16e0b;
}

/* =================== 대분류 메뉴 링크 스타일 보완 =================== */

/* 1. 상단 메뉴 링크 스타일 제거 및 부모 색상 상속 */
.main-menu-link {
  color: inherit;
  text-decoration: none;
}

/* 마우스를 올렸을 때 글자색이 오렌지색으로 변하도록 설정 */
.menu-item:hover .main-menu-link {
  color: #f16e0b;
}

/* 2. 종합 메뉴의 대분류 링크 스타일 제거 */
.main-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* 종합 메뉴 대분류에 마우스 올렸을 때도 오렌지색 효과 */
.main-title a:hover {
  color: #f16e0b;
}

/* =================== 드롭다운 서브메뉴 =================== */

/* 서브메뉴 베이스 */
.submenu {
  position: absolute;
  top: 145%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  min-width: 130px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 999;
}

/* 메뉴에 포인터 위치시 오픈 */
.menu-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 서브메뉴 스타일 */
.submenu a {
  text-decoration: none;
  color: #333;
  padding: 6px 0;
  font-size: 16px;
}

/* 메뉴에 포인터 위치시 색상 변경 */
.submenu a:hover {
  color: #f16e0b;
}

/* =================== 우측 간격 정리 =================== */
.header-right {
  min-width: 140px;
  text-align: right;
}

/* =================== 언어 선택 =================== */

/* 기본 베이스*/
.lang-select {
  display: flex;
  gap: 8px;
  justify-content: flex;
}

/* 언어 버튼 기본 스타일 */
.lang-button {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background-color: #444;
  color: #ffffff;
  padding: 5px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  transition: all 0.2s ease;
}

/* 언어 버튼 스타일 */
.lang-button:hover {
  background-color: #f16e0b;
  border-color: #ffffff;
  color: #ffffff;
}

/* 언어 버튼 활성화시 스타일 */
.lang-button.active {
  background-color: #ffffff;
  color: #fff;
  border-color: #ffffff;
}

/* =================== 종합메뉴 아이콘 =================== */

/* 기본 베이스*/
.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 50px;
  height: 50px;
}

/* 종합메뉴 아이콘 이미지 */
.menu-button img {
  width: 100%;
  height: auto;
}

/* =================== 종합메뉴 오픈 스타일 =================== */

.full-menu-content {
  width: 100%;
  height: 90vh; /* 전체 화면 높이 사용 */
  padding: 0; /* 패딩 제거 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 수직 가운데 정렬 추가 */
  box-sizing: border-box; /* 패딩이 있어도 전체 크기에 포함 */
}

.full-menu-row {
  display: flex;
  gap: 150px;
  width: 100%;
  justify-content: center; /* 추가: 가로 가운데 정렬 */
}

.full-menu-item {
  display: flex; /* center를 flex로 수정 */
  flex-direction: column;
  min-width: 200px;
  align-items: center; /* 추가: 각 메뉴 아이템 내부도 가운데 정렬 */
}

.main-title {
  position: relative;
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  margin-top: 50px;
  padding-bottom: 15px; /* 선과의 간격 확보 */
  text-align: center;
}

/* 밑줄 선 */
.main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%; /* 밑줄 길이 (조절 가능) */
  height: 2px;
  background-color: #f16e0b;
}

/* 서브메뉴 */
.full-submenu {
  list-style: none;
  padding: 0;
  margin: 15px;
  display: flex;
  align-items: center; /* flex-start에서 center로 변경 */
  width: 160%;
  flex-direction: column;
  gap: 20px;
}

.full-submenu li a {
  font-size: 2rem;
  color: #dfdfdf;
  text-decoration: none;
  transition: color 0.2s;
  text-align: center; /* 추가: 텍스트 가운데 정렬 */
}

.full-submenu li a:hover {
  color: #f16e0b;
}

/* 전체 메뉴 팝업 배경 */
.full-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2d2d2da9; /* 어둡고 약간 투명한 배경 */
  backdrop-filter: blur(8px); /* 💡 블러 효과 */
  -webkit-backdrop-filter: blur(8px); /* Safari 지원 */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 9999;
  pointer-events: none;
  overflow-y: auto;
}

.full-menu.show {
  transform: translateY(0);
  pointer-events: auto;
}

/* =================== 종합메뉴 닫기 =================== */

/* 기본 베이스 */
.close-button {
  position: absolute;
  top: 30px;
  right: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

/* 종합메뉴 닫기 아이콘 이미지 */
.close-button img {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.close-button img:hover {
  opacity: 1;
}

/* =================== 카피 문구 =================== */
.left-copy {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
  text-align: left;
}

.left-copy h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 6px #333;
  /* 애니메이션 초기 상태 및 설정 병합 */
  opacity: 0;
  transform: translateY(60px);
  animation: slideUpFade 1.2s ease-out 0.1s forwards;
  white-space: nowrap; /* ✨ 추가된 부분: 메인 타이틀이 한 줄로 길게 유지되도록 자동 줄바꿈을 막습니다. */
}

.left-copy p {
  font-size: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px #333;
  padding-left: 10px; /* 1-2 작업 반영 */
  /* 애니메이션 초기 상태 및 설정 병합 */
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpFade 1.2s ease-out 0.3s forwards;
  white-space: nowrap; /* ✨ 추가된 부분: HTML에 직접 넣은 <br> 태그 외에 화면이 좁아져서 발생하는 자동 줄바꿈을 막습니다. */
}

/* 추가할 내용: 강조 텍스트 (기존 big 태그 대체 / 1-1 작업 반영) */
.highlight-text {
  font-size: 1.2em; 
}

/* 슬라이드 업 페이드 애니메이션 */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================== 메인 비디오 =================== */
.background-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
}

/* =================== 제품 쇼케이스 =================== */
.product-list-section {
  padding: 60px 150px;
  text-align: left;
}

.product-list-section h2 {
  font-size: 3rem;
  margin-top: 0px;
  margin-bottom: 70px;
  /* 애니메이션 초기 상태 병합 */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.product-list-section h2.animate {
  opacity: 1;
  transform: translateY(0);
}

.product-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* ✨ 수정된 부분: 기존 wrap을 nowrap으로 변경하여 제품들이 밑으로 떨어지지 않고 한 줄로 유지되게 합니다. */
  gap: 110px;
}

.product-item {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 애니메이션 초기 상태 병합 */
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease-out;
}

.product-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 스태거링 효과 (순차적 등장) */
.product-item:nth-child(1).animate { transition-delay: 0.1s; }
.product-item:nth-child(2).animate { transition-delay: 0.2s; }
.product-item:nth-child(3).animate { transition-delay: 0.3s; }
.product-item:nth-child(4).animate { transition-delay: 0.4s; }
.product-item:nth-child(5).animate { transition-delay: 0.5s; }

.product-item img {
  width: 150%;
  height: 500px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 12px #0000001a;
}

/* === 지그재그 효과 === */
.product-item:nth-child(2),
.product-item:nth-child(4) {
  margin-top: 100px;
}

.product-item p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #111;
}


/* =================== 푸터 =================== */

/* 푸터 베이스 */
footer {
  background-color: #333;
  color: #ababab;
  padding: 40px 100px;
  margin-top: 30px;
  text-align: left;
}

/* 푸터 내부 컨테이너 */
.footer-container {
  max-width: 1800px;
  margin: 0 auto;
}

/* 개인정보처리방침 버튼 마진 */
.footer-policy-wrap {
  margin-bottom: 30px;
}

/* 개인정보처리방침 버튼 기본 베이스 & 스타일 */
.privacy-policy-button {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #ccc;
  background-color: #333;
  color: #ffffff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.privacy-policy-button:hover {
  background-color: #eee;
  color: #333;
}

.footer-copy p {
  margin: 10px 0;
  font-size: 17px;
}

/* =================== 푸터 정보 레이아웃 =================== */
.footer-info .info-row {
  display: flex;
  gap: 40px; /* 기존에 &emsp;&emsp; 로 띄우던 간격을 대신합니다 */
  margin-bottom: 10px; /* 위아래 줄 간격 */
}

.footer-info .info-row p {
  margin: 0; /* p태그의 불필요한 기본 여백 제거 */
}

.footer-info .label {
  display: inline-block;
  margin-right: 15px; /* Address, Tel 등 라벨과 실제 내용 사이의 간격 */
  color: #dfdfdf; /* 라벨 색상을 살짝 다르게 주면 더 세련돼 보입니다 */
}

/* =================== 탑 버튼 (▲) =================== */

/* 기본 베이스 */
#goTopButton {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #f16e0b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;

/* 탑 버튼 안 보일 때 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* 탑 버튼 보일 때 */
#goTopButton.show {
  opacity: 1;
  visibility: visible;
}

/* =================== 서브페이지 공통 배너 =================== */
.sub-banner {
  background-color: #2d2d2d; /* 어두운 회색톤 배경 (나중에 배경 이미지로 바꿀 수도 있습니다) */
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.sub-banner h1 {
  font-size: 3rem;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.sub-banner p {
  font-size: 1.2rem;
  color: #bbb;
  margin: 0;
}

/* =================== CEO 인사말 본문 레이아웃 =================== */
.ceo-content-wrap {
  padding: 100px 0;
  background-color: #fff;
}

.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px; /* 텍스트와 이미지 사이 간격 */
  align-items: flex-start;
}

/* 인사말 텍스트 영역 */
.ceo-text {
  flex: 1.2; /* 텍스트 영역을 조금 더 넓게 */
  text-align: left;
}

.ceo-text h2 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 40px;
  color: #111;
}

.ceo-text .highlight-orange {
  color: #f16e0b; /* 핵심 포인트 오렌지색 */
}

.ceo-text .ceo-lead {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ceo-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ceo-text .ceo-sign {
  margin-top: 50px;
  font-size: 1.2rem;
  color: #222;
  font-weight: bold;
}

.ceo-text .ceo-sign span {
  font-size: 1.5rem;
  margin-left: 20px;
  letter-spacing: 5px; /* 이름 글자 간격 벌리기 */
}

/* CEO 이미지 영역 */
.ceo-image {
  flex: 0.8;
}

.ceo-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* 은은한 그림자 효과 */
}

/* =================== 회사소개 본문 레이아웃 =================== */
.about-content-wrap {
  padding: 100px 0;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* ✨ 핵심: 좌우 배치를 위아래 세로 배치로 변경 */
  align-items: center;
}

/* 위쪽: 회사 이미지 영역 */
.about-image {
  width: 100%; /* 사진이 컨테이너(1200px)를 꽉 채우도록 설정 */
  margin-bottom: 70px; /* 사진과 아래 본문 글 사이의 여백 */
}

.about-image img {
  width: 100%;
  max-height: 550px; /* 사진이 너무 위아래로 길어지는 것을 방지 */
  object-fit: cover; /* 찌그러지지 않고 예쁘게 잘리도록 설정 */
  border-radius: 8px; /* 모서리를 살짝 더 둥글게 */
  box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* 그림자를 조금 더 깊게 주어 고급스럽게 */
}

/* 아래쪽: 회사소개 텍스트 영역 */
.about-text {
  width: 100%; /* 텍스트 영역도 꽉 채우기 */
  text-align: left;
}

/* --- (이하 텍스트 상세 스타일은 기존과 동일하게 유지) --- */
.about-text .about-main-title {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 50px;
  color: #111;
  text-align: center; /* ✨ 메인 타이틀만 가운데 정렬로 강조 */
}

.about-text .highlight-orange {
  color: #f16e0b; /* 핵심 포인트 오렌지색 */
}

/* 각 단락 스타일 */
.about-section {
  margin-bottom: 35px;
}

.about-section h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
  margin-top: 0;
  margin-bottom: 12px;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* 하단 캐치프레이즈 */
.about-text .about-catchphrase {
  margin-top: 50px;
  font-size: 2.3rem;
  color: #f16e0b;
  font-weight: bold;
  border-top: 1px solid #eee; /* 본문과 구분되는 상단 얇은 선 */
  padding-top: 25px;
  text-align: center; /* ✨ 캐치프레이즈도 가운데 정렬 */
}

/* =================== 연혁 타임라인 레이아웃 =================== */
.history-content-wrap {
  padding: 100px 0;
  background-color: #fff;
}

.history-container {
  max-width: 900px; /* 타임라인은 글이 너무 넓게 퍼지면 안 예쁘므로 조금 좁게 설정 */
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

/* 타임라인 가운데 세로선 */
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #eee;
  top: 0;
  bottom: 0;
  left: 180px; /* 연도 영역과 내용 영역을 나누는 기준선 */
}

/* 개별 연도 블록 */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* 마지막 블록은 여백 없애기 */
.timeline-item:last-child {
  margin-bottom: 0;
}

/* 연도 텍스트 */
.timeline-year {
  width: 130px;
  text-align: right;
  padding-right: 50px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #f16e0b; /* 브랜드 오렌지 컬러 */
  line-height: 1;
}

/* 세로선 위의 동그라미 (포인트) */
.timeline-dot {
  position: absolute;
  left: 173px; /* 180px에서 동그라미 절반 크기만큼 빼서 선 정중앙에 맞춤 */
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 3px solid #f16e0b;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 5px #fff; /* 선이 동그라미 안을 관통하지 않게 가려주는 효과 */
}

/* 연혁 상세 내용 영역 */
.timeline-content {
  flex: 1;
  padding-left: 50px;
  padding-top: 2px; /* 연도와 라인을 맞추기 위한 미세 조정 */
}

/* 월 + 상세 내용 한 줄 */
.history-event {
  margin-bottom: 15px;
  font-size: 1.15rem;
  color: #444;
  display: flex;
}

.history-event:last-child {
  margin-bottom: 0;
}

/* '월' 부분 디자인 */
.history-event .month {
  font-weight: bold;
  color: #999;
  width: 40px; /* 월 영역 크기 고정 (줄바꿈 방지) */
  flex-shrink: 0;
}

/* '내용' 부분 디자인 */
.history-event .desc {
  flex: 1;
  line-height: 1.5;
}

/* =================== 찾아오시는 길 레이아웃 =================== */
.location-content-wrap {
  padding: 100px 0;
  background-color: #fff;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 지도 영역 */
.map-area {
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
  background-color: #f5f5f5; /* 지도가 들어오기 전 빈 공간 색상 */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden; /* 지도가 둥근 모서리를 삐져나오지 않게 함 */
}

/* 카카오맵에서 가져온 iframe이 영역에 꽉 차도록 설정 */
.map-area iframe {
  width: 100%;
  height: 100% !important; /* 높이를 강제로 100%로 맞춤 */
  border: none;
}

/* 정보 영역 */
.location-info {
  display: flex;
  justify-content: center;
}

/* 정보 박스 디자인 */
.info-group {
  width: 100%;
  max-width: 900px;
  background: #fdfdfd;
  padding: 40px 60px;
  border-top: 3px solid #f16e0b; /* 위쪽에 오렌지색 포인트 라인 */
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* 은은한 그림자 */
  border-radius: 0 0 8px 8px;
}

.info-group h3 {
  font-size: 1.8rem;
  color: #111;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 개별 정보 라인 */
.info-list li {
  display: flex;
  font-size: 1.15rem;
  color: #444;
  border-bottom: 1px solid #eee; /* 줄 간격 구분선 */
  padding-bottom: 15px;
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* '주소', '전화' 등의 라벨 텍스트 */
.info-list li strong {
  width: 120px;
  color: #f16e0b;
  flex-shrink: 0;
}

/* =================== 게시판 공통 레이아웃 =================== */
.board-content-wrap {
  padding: 80px 0 120px;
  background-color: #fff;
}

.board-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 검색 영역 */
.board-search-area {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-select {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-right: none;
  color: #555;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.search-input {
  padding: 8px 15px;
  width: 250px;
  border: 1px solid #ddd;
  border-right: none;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.search-btn {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #ddd;
  color: #1e68e8; /* 이미지처럼 파란색 글씨로 포인트 */
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #f8f9fa;
}

/* 게시판 테이블 기본 세팅 */
.board-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 50px;
}

.board-table th, .board-table td {
  padding: 16px 10px;
}

/* 헤더(맨 윗줄) 디자인 */
.board-table th {
  border-top: 2px solid #222;
  border-bottom: 1px solid #222;
  font-size: 1.05rem;
  font-weight: bold;
  color: #111;
}

/* 내용(각 줄) 디자인 */
.board-table td {
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 1.05rem;
}

/* 각 열(칸) 너비 조절 */
.col-num { width: 8%; }
.col-title { width: auto; } /* 제목이 가장 넓게 차지하도록 */
.col-author { width: 12%; }
.col-date { width: 15%; }
.col-file { width: 10%; }

/* 공지사항 라벨 (빨간 테두리) */
.badge-notice {
  display: inline-block;
  border: 1px solid #e11d48;
  color: #e11d48;
  padding: 3px 12px;
  font-size: 0.85rem;
  border-radius: 3px;
  background: #fff;
}

/* 제목 좌측 정렬 및 마우스 올렸을 때 효과 */
.text-left {
  text-align: left !important;
  padding-left: 20px !important;
}

.text-left a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.text-left a:hover {
  color: #f16e0b; /* 마우스 올리면 브랜드 컬러(오렌지)로 변경 */
  text-decoration: underline;
}

/* 다운로드 아이콘 호버 효과 */
.download-icon {
  color: #333;
  transition: color 0.2s;
}

.download-icon:hover {
  color: #f16e0b;
}

/* 하단 페이지네이션(번호) 버튼 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: #f16e0b;
  color: #f16e0b;
}

.pagination a.active {
  background-color: #f16e0b;
  border-color: #f16e0b;
  color: #fff;
}

/* =================== 고객문의 본문 레이아웃 =================== */
.contact-content-wrap {
  padding: 100px 0;
  background-color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px; /* 좌우 영역 간격 */
  align-items: flex-start;
}

/* 1. 왼쪽 문의 폼 스타일 */
.contact-form-area {
  flex: 1.2; /* 문의 폼 영역을 살짝 더 넓게 */
  text-align: left;
}

.contact-form-area h2, .contact-info-area h2 {
  font-size: 1.8rem;
  color: #111;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.form-group label span {
  color: #e11d48; /* 필수 표시 빨간 별색 */
}

/* 입력창 및 텍스트 영역 공통 디자인 */
.form-group input, .form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

/* 입력창 클릭 시 오렌지색 테두리 효과 */
.form-group input:focus, .form-group textarea:focus {
  border-color: #f16e0b;
}

.form-group textarea {
  resize: none; /* 사용자 임의 크기 조절 막기 */
}

/* 개인정보 동의 영역 */
.form-agreement {
  margin-top: 5px;
}

.form-agreement label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
}

.form-agreement input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* 문의하기 버튼 */
.submit-btn {
  padding: 15px 0;
  background-color: #f16e0b; /* 브랜드 컬러 */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #d65f05; /* 마우스 올렸을 때 조금 더 짙은 오렌지 */
}

/* 2. 오른쪽 회사 정보 스타일 */
.contact-info-area {
  flex: 0.8;
  text-align: left;
  background: #fcfcfc;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.contact-info-area .info-lead {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 45px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.05rem;
}

.contact-info-list li strong {
  color: #f16e0b; /* 오렌지색 라벨 */
  font-size: 0.95rem;
}

.contact-info-list li span {
  color: #333;
  font-weight: 500;
}

/* 하단 유의사항 박스 */
.contact-notice-box {
  border-top: 1px dashed #ddd;
  padding-top: 25px;
}

.contact-notice-box p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.contact-notice-box p:last-child {
  margin-bottom: 0;
}