/* 기본 스타일 */
body {
  margin: 0;
  font-family:
    "Noto Sans KR",
    "Noto Sans SC",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  color: #222;
  line-height: 1.7;
}

header nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

header .notice-btn {
  margin-left: auto; /* 핵심! 버튼과 언어선택을 오른쪽 끝으로 밀어냅니다 */
  margin-right: 15px; /* 언어 선택 박스와의 간격 */
  text-decoration: none; /* 링크 밑줄 제거 */
  color: #333333; /* 글자 색상 */
  font-weight: 600;
  font-size: 15px;
  padding: 4px 12px; /* 버튼 내부 여백 */
  border: 1px solid #dddddd; /* 얇은 테두리 */
  border-radius: 6px; /* 모서리 둥글게 */
  background-color: #f9f9f9;
  transition: all 0.2s ease; /* 호버 시 부드러운 전환 효과 */
}

/* 버튼에 마우스 올렸을 때 (Hover) 효과 */
header .notice-btn:hover {
  background-color: #eeeeee;
  border-color: #cccccc;
  color: #000000;
}

header h2 {
  margin: 0;
}

/* 🔹 Hero Section */
.hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/test.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.6);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  padding: 20px;
}
.hero-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* 🔹 본문 섹션 */
main {
  padding: 100px 10%;
  background-color: #fafafa;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 80px;
}

.content-block h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.content-block p {
  font-size: 16px;
  color: #555;
}

-- .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 48px;
}

.logo-section {
  display: flex;
  align-items: center; /* 로고와 회사명 수직 중앙 정렬 */
  gap: 12px; /* 로고와 회사명 사이 간격 */
}
.logo-section .logo {
  width: 250px; /* 가로 고정 */
  height: 150px; /* 세로 고정 */
  object-fit: contain; /* 이미지 비율 유지, 여백 생기면 비워둠 */
}

.logo-section h3 {
  margin: 0;
  font-size: 1.5rem; /* 필요하면 조절 */
}

/* 🌐 언어 선택 스타일 */
.lang-select {
  position: relative;
}

.parter-child {
  margin-bottom: 2rem;

  margin-top: 3rem;
}

.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 36px 8px 12px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover 시 효과 */
.lang-select select:hover {
  background-color: #eef1f4;
  border-color: #bbb;
}

/* 🔽 커스텀 화살표 */
.lang-select::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #666;
  pointer-events: none;
}

/* 포커스 시 테두리 강조 */
.lang-select select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

-- ul.custom-list {
  list-style-type: disc;
  padding-left: 20px;
}

ul.custom-list li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555555;
}
ul.custom-list li span.bold {
  font-weight: 700;
}

/* 🔹 Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
  color: #777;
}
.contact-icon {
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: #fff;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 320px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.55rem;
  font-weight: 600;
  min-height: 30px;
  margin-bottom: 0.5rem;
  color: #22365c;
}

.feature-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .hero {
    height: 30vh; /* 히어로 섹션 높이 줄임 */
    padding: 0 10px;
    margin-top: 10vh;
  }

  .hero-content h2 {
    font-size: 24px; /* 글자 크기 줄임 (또는 더 키우려면 36px 등) */
  }

  .hero-content p {
    font-size: 20px; /* 본문 글자 크기 키움 */
  }

  main {
    padding: 80px 5%; /* 패딩 줄임 */
  }

  .content-block h2 {
    font-size: 24px; /* 섹션 제목 약간 줄임 */
  }

  .content-block p {
    font-size: 18px; /* 본문 글자 조금 키움 */
  }

  header nav {
    padding: 10px 20px; /* 네비게이션 패딩 줄임 */
  }
}
