@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
}

ul li {
  list-style: none;
}

.container {
  width: 100%;
}

.container-wrap {
  width: 100%;
  margin: 0 auto;
}

.headers {
    width: 100%;
    height: auto;
    z-index: 999;
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
}

.headers-wrap {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  margin: 0 auto;
}

.header-logo {
  width: 100%;
}

.header-logo img {
  width: 20%;
  object-fit: contain;
}

/* PC/태블릿용 네비게이션 */
.desktop-navigation {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

/* 모바일 햄버거 버튼 - PC/태블릿에서 숨김 */
.mobile-menu-btn {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

.mobile-menu-btn img {
  width: 24px;
  height: 24px;
}

/* 모바일 사이드바 - PC/태블릿에서 완전 숨김 */
.mobile-sidebar {
  display: none !important;
}

.desktop-navigation li {
  color: #373737;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-navigation li:not(:last-child) {
  cursor: pointer;
}

/* hover 효과를 위한 ::after 요소 */
.desktop-navigation li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -8px; /* 헤더 패딩을 고려한 위치 조정 */
  left: 0;
  width: 0;
  height: 4px;
  background-color: #007025;
  transition: width 0.3s ease;
}

/* 호버 효과 */
.desktop-navigation li:not(:last-child):hover {
  color: #007025;
}

.desktop-navigation li:not(:last-child):hover::after {
  width: 100%;
}

.contents {
  width: 100%;
  padding-top: 2%;

}

.contents-wrap {
  width: 100%;
}

.main-banner-wrap {
  width: 100%;
  position: relative;
}

.main-banner-wrap img {
  box-sizing: border-box;
  width: 100%;
}

.main-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  width: 100%;
}

.main-banner-text p {
  color: white;
  font-size: 28px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 58px */
  letter-spacing: -0.4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-banner-text h2 {
  color: white;
  font-size: 52px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 58px */
  letter-spacing: -0.4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
/* 솔루션 섹션 시작 */
.solutions {
  width: 100%;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  gap: 200px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.solutions-wrap h2 {
  color: #414141;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 58px */
  letter-spacing: -0.4px;
  font-size: 28px;
  margin-bottom: 100px;
}

/* 공통 서비스 레이아웃 */
.blockchain-svc,
.ESG-solution-svc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}

.smart-insu-svc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0 auto;
}

/* 공통 이미지 컨테이너 */
.blockchain-svc-images,
.ESG-solution-svc-images {
  width: 100%;
  flex-basis: 40%;
}

.smart-insu-svc-images {
  flex-basis: 33%;
}

.blockchain-svc img,
.smart-insu-svc img,
.ESG-solution-svc img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
}

/* 스마트보험 이미지 특별 처리 - 언어별 크기 통일 */
#insurance-desktop-image,
#insurance-mobile-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
}

/* 공통 콘텐츠 스타일 */
.blockchain-svc-contents,
.smart-insu-svc-contents,
.ESG-solution-svc-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 모바일 전용 이미지는 PC에서 숨김 */
.mobile-content-image {
  display: none;
}

.blockchain-svc-contents span,
.smart-insu-svc-contents span,
.ESG-solution-svc-contents span {
  margin-bottom: 17px;
  color: #003a13;
  font-family: "Noto Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  letter-spacing: -0.84px;
}

.blockchain-svc-contents h3,
.smart-insu-svc-contents h3,
.ESG-solution-svc-contents h3 {
  margin-bottom: 40px;
  color: #202020;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 69.6px */
  letter-spacing: -0.24px;
}

.blockchain-svc-contents p,
.smart-insu-svc-contents p,
.ESG-solution-svc-contents p {
  margin-bottom: 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.12px;
}

.out-link-btn {
  width: 100%;
  display: flex;
  justify-content: end;
  padding-top: 30px;
}
.smart-out-link-btn {
  width: 100%;
  display: flex;
  justify-content: start;
  padding-top: 30px;
  cursor: pointer;
}

.out-link-btn img,
.smart-out-link-btn img {
  width: 40px;
  height: 37px;
  flex-shrink: 0;
  cursor: pointer;
}

/* 공통 파트너 정보 스타일 */
.blockchain-svc-partnerinfo,
.smart-insu-svc-partnerinfo,
.ESG-solution-svc-partnerinfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  margin: 0 auto;
}

.blockchain-svc-partnerinfo p,
.smart-insu-svc-partnerinfo p,
.ESG-solution-svc-partnerinfo p {
  color: #c3c3c3;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.12px;
}

/* 공통 파트너 로고 컨테이너 */
.blockchain-svc-partner,
.smart-insu-svc-partner,
.ESG-solution-svc-partner {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  border-top: 1px solid #d9d9d9;
}

.ESG-solution-svc-partner {
  padding-top: 40px;
}

.blockchain-svc-partner,
.smart-insu-svc-partner {
  padding-top: 18px;
}

.blockchain-svc-partner img {
  object-fit: contain;
}

.ESG-solution-svc-partner img {
  object-fit: contain;
  width: 20%;
}

.smart-insu-svc-partner img {
  width: 30%;
}

.all-view {
  width: 70%;
  margin: 0 auto;
  padding-top: 200px;
  max-width: 1280px;
  padding-bottom: 40px;
}

.all-view h2 {
  padding-bottom: 40px;
  color: #414141;
  font-family: "Noto Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.4px;
}

.view-grid-box {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.view-grid-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 35px;
  background: #fefefe;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 24px;
  text-align: center;
  min-height: 280px;
}

.view-grid-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.view-grid-item-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.view-grid-item-title span {
  color: #5d605e;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 52.2px */
  letter-spacing: -0.36px;
}

.view-grid-item-title p {
  color: #5d605e;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.24px;
}

.rt-news h2 {
  color: #414141;
  font-family: "Noto Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.4px;
}

.rt-service {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 120px 0;
}

.rt-service h2 {
  color: #414141;
  font-family: "Noto Sans";
  font-size: 28px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
  text-align: left;
}

.rt-service-contents {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* 공통 서비스 카드 스타일 */
.rt-service-contents-insu,
.rt-service-contents-trip,
.rt-service-contents-secu {
  width: 100%;
  position: relative;
  display: inline-block;
}

.serivce-bg-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.service-content-context {
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
}

.service-content-context-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

/* 공통 서비스 이미지 스타일 */
.service-insu-image,
.service-trip-image,
.service-secu-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-insu-image img,
.service-trip-image img,
.service-secu-image img {
  max-width: 100%;
  object-fit: contain;
}

.service-secu-image img {
  position: relative;
  top: 20px;
}
.service-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-title-insu,
.service-title-trip,
.service-title-secu {
  text-align: center;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 52.2px */
  letter-spacing: -0.36px;
}

.service-title-insu {
  color: #007104;
}
.service-title-trip {
  color: #00327d;
}
.service-title-secu {
  color: #00117d;
}

.more-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  cursor: pointer;
  padding-top: 20px;
  transition: all 0.3s ease;
  text-decoration: none; /* 링크 밑줄 제거 */
  color: inherit; /* 부모 색상 상속 */
}

.more-btn p {
  color: #424242;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}


/* 뉴스 섹션 스타일 */
.rt-news {
  width: 100%;
  padding: 80px 16px 128px;
  overflow: hidden;
}

.rt-news-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 80%;
}

/* 헤더 - 제목만 왼쪽 정렬 */
/* 헤더 - 제목만 왼쪽 정렬 */
.rt-news-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}

.rt-news-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* 버튼들을 슬라이더 양 끝에 고정 배치 */
.rt-news-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  background: linear-gradient(
    135deg,
    rgb(236 255 241 / 90%),
    rgba(255, 255, 255, 0.7)
  );
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: absolute;
}

.prev-btn {
  left: 18px; /* 슬라이더 왼쪽 끝에 고정 */
}

.next-btn {
  right: 18px; /* 슬라이더 오른쪽 끝에 고정 */
}

.nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.nav-btn svg {
  width: 30px;
  height: 30px;
}

.rt-news-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 10px 0;
}

.rt-news-slider:active {
  cursor: grabbing;
}

.rt-news-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.rt-news-item {
  flex-shrink: 0;
  padding: 0 10px;
  width: 35%;
}

.rt-news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* 새로운 이미지박스 디자인 */
.imagesBox {
  width: 100%;
  height: 370px; /* 400px에서 350px로 축소 */
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.image-container {
  position: relative;
  width: 100%;
  height: 220px; /* 250px에서 220px로 축소 */
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-container::after {
  background: linear-gradient(
    0deg,
    rgba(0, 58, 19, 0.52) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  pointer-events: none;
}

.imagesBoxText {
  display: flex;
  flex-direction: column;
  gap: 12px; /* 10px에서 8px로 축소 */
  padding: 18px;
  flex: 1; /* 남은 공간을 모두 차지 */
  min-height: 0; /* flex 자식 요소의 최소 높이 제한 해제 */
}

.imagesBoxText p {
  color: #96989c;
  font-family: "Noto Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 34.8px */
}

.imagesBoxText h3 {
  color: #000;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 46.4px */
  letter-spacing: -0.32px;
}

/* 링크 스타일링 */
.rt-news-item a:visited {
  color: inherit;
}

.rt-news-item a:focus {
  outline: 2px solid #353535;
  outline-offset: 2px;
}

/* 스크롤바 숨기기 */
.rt-news-slider::-webkit-scrollbar {
  display: none;
}

.rt-news-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.web3-echo {
  width: 100%;
}
.web3-echo-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  background: #f8fffa;
  padding: 60px 0;
}

.web3-echo-contents h2 {
  color: #414141;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 69.6px */
  letter-spacing: -0.48px;
}

.web3-echo-image-wrap {
  width: 25%;
  flex-shrink: 0;
  aspect-ratio: 233/173;
}

.web3-echo-image-wrap img {
  width: 100%;
  object-fit: contain;
}

/* 파트너 섹션 스타일 */
.our-partner {
  width: 100%;
  padding: 80px 0;

  overflow: hidden;
}

.our-partner-wrap {
  margin: 0 auto;
}

.our-partner-wrap > p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 60px;
}

/* 파트너 로우 컨테이너 - JavaScript 완전 제어 */
.partner-row-1,
.partner-row-2 {
  width: 100%;
  height: 80px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.partner-row-2 {
  margin-bottom: 0;
}

/* 파트너 로고 기본 스타일 - JavaScript 제어용 */
.partner-logo {
  height: auto;
  min-height: 50px;
  max-height: 80px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* CSS 애니메이션 제거 - JavaScript가 완전 제어 */

/* 모달 스타일 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(-50px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-content {
  padding: 20px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header p {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
}

.modal-close {
  background: #f8f9fa;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-weight: 300;
}

.modal-close:hover {
  background-color: #e9ecef;
  color: #495057;
  transform: scale(1.1);
}

.modal-overlay .inquiry-form {
  width: 100%;
  border-radius: 0 0 20px 20px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.modal-overlay .inquiry-form-wrap {
  width: 100%;
  padding-right: 4px;
  max-height: calc(85vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-overlay .inquiry-form-wrap::-webkit-scrollbar {
  display: none;
}

.modal-overlay .inputWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-overlay .inputWrap label {
  color: #374151;
  text-align: start;
  font-family: "Noto Sans KR";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.modal-overlay .inputWrap input {
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-size: 16px;
  font-family: "Noto Sans KR";
  color: #1f2937;
  transition: all 0.2s ease;
  outline: none;
}

.modal-overlay .inputWrap input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-overlay .inputWrap input::placeholder {
  color: #9ca3af;
}

.modal-overlay .inputWrap textarea {
  min-height: 120px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-size: 16px;
  font-family: "Noto Sans KR";
  color: #1f2937;
  padding: 16px 20px;
  resize: vertical;
  transition: all 0.2s ease;
  outline: none;
}

.modal-overlay .inputWrap textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-overlay .inputWrap textarea::placeholder {
  color: #9ca3af;
}

.modal-overlay .inquiry-btn-contents {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  margin-top: 8px;
}

.modal-overlay .inquiry-send {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.modal-overlay .inquiry-send:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.modal-overlay .inquiry-send p {
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
  margin: 0;
}

.modal-overlay .inquiry-send img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.modal-overlay .inquiry-contact {
  flex: 1;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-overlay .inquiry-contact p {
  color: #6b7280;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
  margin: 0;
}

.modal-overlay .inquiry-send,
.modal-overlay .inquiry-contact {
  padding: 16px 24px;
}

.footer {
  border-top: 2px solid #f1f2f3;
  background: #fff;
}

.footer-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}

.footer-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.footer-logo img:nth-child(1) {
  width: 180px;
  aspect-ratio: 3/1;
  object-fit: contain;
}
.footer-logo img:nth-child(2) {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.footer-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-info-list {
  width: 100%;
}

.footer-info-list ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-info-list ul li {
  color: #a8a8a8;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 173%; /* 41.52px */
  text-align: left;
}

.copyright {
  width: 100%;
  color: #96989c;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 173%; /* 41.52px */
  text-align: end;
}

/* =====================================
   언어 선택기 - 통합 박스 스타일
   ===================================== */

/* 공통 스타일 */
.lang-container {
  position: relative;
  display: inline-block;
  min-width: 120px;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 36px;
  border: 1.5px solid #007025;
  background: #FFF;
  cursor: pointer;
  transition: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  color: #333;
  min-width: 140px;
}


.lang:active {
    justify-content: center;
  transform: translateY(0);
  border-color: #005a1a;
  border-radius: 12px;
}

.lang img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.lang p {
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #007025;
}

/* 드롭다운 - absolute positioning으로 레이아웃 영향 방지 */
.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #007025;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  z-index: 1000;
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
}

.lang-container.expanded .lang {
  border-radius: 8px 8px 0 0;
  color: #007025;
  border: 1.5px solid #007025;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 112, 37, 0.1);
  justify-content: start;
}

.lang-container.expanded .lang:active {
  transform: translateY(0);
  transition: none;
  border-radius: 12px;
}

.lang-container.expanded .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: none;
}

/* 드롭다운 옵션 */
.lang-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f1f3f4;
  transition: none;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-option p {
  margin: 0;
  font-size: 16px;
  color: #007025;
  white-space: nowrap;
  flex-shrink: 0;
}


/* pc버젼일때  */
@media screen and (min-width: 1281px) and (max-width: 1920px) {
  .modal-content {
    max-width: 550px;
  }
}

/* 서비스 이미지 반응형 설정 */
/* 대형 화면 (1281px 이상) */
@media screen and (min-width: 1281px) {
  .service-insu-image img,
  .service-trip-image img,
  .service-secu-image img {
    height: 240px;
    object-fit: contain;
  }

  .service-title-insu,
  .service-title-trip,
  .service-title-secu {
    white-space: nowrap;
  }
}

/* 중형 화면 (1024px ~ 1280px) */
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  .rt-service-contents {
    gap: 18px;
    overflow: visible;
  }

  .rt-service-contents::-webkit-scrollbar {
    display: none;
  }

  /* 중형 화면 스크롤 카드 설정 */
  .rt-service-contents-insu,
  .rt-service-contents-trip,
  .rt-service-contents-secu {
    flex: 0 0 300px;
    width: 300px;
  }

  .service-insu-image img,
  .service-trip-image img,
  .service-secu-image img {
    height: 130px;
    object-fit: contain;
  }

  .service-title-insu,
  .service-title-trip,
  .service-title-secu {
    font-size: 18px;
    white-space: nowrap;
  }
}

/* Mobile-specific optimizations */
@media screen and (max-width: 768px) {
  /* Remove transitions for instant response on mobile */
  .lang {
    transition: none;
  }

  .lang-dropdown {
    transition: none;
  }

  .lang-option {
    transition: none;
  }

  .lang-container.expanded .lang {
    transition: none;
  }

  .lang-container.expanded .lang:active {
    transition: none;
  }
}
