/* KoPub 돋움(로컬 설치 폰트) 적용: navbar-styles.css 맨 위에 추가하세요 */
@font-face {
  font-family: 'KoPub돋움';
  src: local('KoPub돋움체_Pro Medium'); /* 로컬에 설치된 정확한 이름 사용 */
  font-weight: medium; /* Medium에 해당하는 가중치(필요시 600 또는 700으로 조정) */
  font-style: normal;
  font-display: swap;
}

/* (선택) 볼드 스타일이 별도 이름으로 설치되어 있다면 아래처럼 추가하면 좋습니다. */
@font-face {
  font-family: 'KoPub돋움';
  src: local('KoPub돋움체_Pro Bold'); 
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* 전체 사이트 기본 폰트로 설정 */
body {
  margin: 0;
  padding: 0;
  font-family: 'KoPub돋움', /*'Noto Sans KR', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", */ sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}


/* 네비게이션 바 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;   /* 또는 100% */
  z-index: 9999;  /* 다른 요소보다 위에 오게 */
  height: 3.75rem; /* 60px -> 3.75rem */
  background: #f4f6fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6.25rem; /* 0 100px -> 0 6.25rem */
  box-sizing: border-box;
}



.logo {
  font-weight: bold;
  color: #2339b4;
  font-size: 1.375rem; /* 22px -> 1.375rem */
}

.logo a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: inherit;
  cursor: pointer;
}
.logo a:hover {
  color: inherit; 
  text-decoration: none;
}



.menu {
  list-style: none;
  display: flex;
  gap: 2rem; /* 32px -> 2rem */
  margin: 0;
  padding: 0;
}

.menu li {
  font-size: 1rem; /* 16px -> 1rem */
  color: #222;
  cursor: pointer;
  position: relative;
}

.menu a {
  color: inherit;         /* 부모의 글씨 색상 상속 */
  text-decoration: none;  /* 밑줄 제거 */
  font-weight: inherit;   /* (필요시) 굵기도 상속 */
}

/* 마우스를 올렸을 때 색상 변화 등 커스텀 */
.menu a:hover,
.menu a:focus {
  color: #38a1db;         /* 원하는 포커스/호버 색상 */
  text-decoration: underline; /* (원하면 호버시만 밑줄) */
}

/* 드롭다운 메뉴와 상위 메뉴 항목 사이의 간격을 채워 마우스 이동 시 메뉴가 닫히는 현상을 방지합니다. */
.menu li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.25rem; /* 20px */
  height: 1.25rem;
}

/* 드롭다운 메뉴 기본적으로 숨기기 */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.25rem; /* 36px -> 2.25rem */
  left: 0;
  background: #fff;
  border-radius: 0.625rem; /* 10px -> 0.625rem */
  box-shadow: 0 0.125rem 0.625rem rgba(34,57,180,0.08); /* 0 2px 10px -> 0 0.125rem 0.625rem */
  min-width: 8.125rem; /* 130px -> 8.125rem */
  z-index: 100;
  padding: 0.5rem 0; /* 8px 0 -> 0.5rem 0 */
  list-style: none;         /* ← 동그란 원 없앰 */
  margin: 0;                /* ← 여백 제거 */
}

.dropdown-menu li {
  color: #222;
  padding: 0.625rem 1.25rem; /* 10px 20px -> 0.625rem 1.25rem */
  white-space: nowrap;
    list-style: none;         /* ← 동그란 원 없앰 */
}

.dropdown-menu li:hover {
  background: #f0f4ff;
}

/* 마우스 올렸을 때만 드롭다운 보이기 */
.dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 720px) {
  /* 헤더 전체 스타일 */
  .navbar {
    height: 3.75rem;
    padding: 0 1rem; /* 좌우 모두 1rem으로 축소 */
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    min-width: 320px;
    max-width: 100%;
  }

  /* 햄버거 버튼 (또는 라벨) */
  .hamburger, 
  .menu-toggle {
    margin-right: 4rem;  /* 기존 1rem에서 2rem 으로 간격을 늘림 */
    /* 기존 스타일 유지 */
    display: block !important;
    cursor: pointer;
    position: relative;
    order: 0;
    margin-left: 0;
    padding-left: 0;
    left: 0;
    z-index: 11000;
    font-size: 2rem;
  }

  /* 체크박스 숨기기 */
  input.menu-toggle[type="checkbox"] {
    display: none !important;
  }

  /* 메뉴 스타일 */
  .menu {
    order: 2; /* 헤더 내 상위 순서 */
    display: none; /* 기본 안 보임 */
    flex-direction: column;
    position: absolute;
    top: 3.75rem; /* 헤더 높이 하단 위치 */
    left: 0;
    right: 0;
    background: #f4f6fb;
    padding: 1rem 0;
    z-index: 1000;
    gap: 2rem;
    font-size: 1rem;
    white-space: nowrap;
  }

  /* 체크박스가 체크되면 메뉴 보이기 */
  .menu-toggle:checked + .hamburger + .menu {
    display: flex;
  }

  /* 메뉴 아이템 */
  .menu li {
    padding: 0 0.7rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* 로고 스타일 */
  .logo {
    order: 1; /* 햄버거 다음 */
    flex-grow: 1;
    font-size: 1.2rem;
    height: 1.2rem;
    margin: 0 auto; /* 좌우 마진 auto로 중앙 배치 */
  }

  .logo img {
    height: 1.3rem;
    width: auto;
  }
}


@media (min-width: 721px) {

    .hamburger {
    display: none;
  }

  .menu-toggle {
    display: none !important;
  }
  .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 2rem;
  }
}























:root {
  --main-blue: #122858;
  --main-white: #fff;
}


/* 전체 시각 영역 */
.here-visual {
  background: var(--main-blue);
  width: 100%;
  min-height: auto; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  margin-top: 3.75rem; 
}

.here-section {
  width: 100%;
  min-height: auto; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  position: relative;
  padding-bottom: 0 !important;  /* 하단 패딩 최소화 또는 0으로 */
  margin-bottom: 0 !important;
}

/* 중앙 배치: 좌측 설명 + 손 이미지 */
.here-content {
  background: var(--main-blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  flex: 1 0 auto; 
  min-height: 60vh; /* 데스크톱에서 최소한의 높이 확보 */
  height: auto; 
  box-sizing: border-box;
  position: relative; /* <<<< ABSOLUTE 자식 요소를 위한 기준점 */
}

/* 좌측 설명: 데스크톱 스타일 */
.here-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 원래 수직 중앙 정렬 유지 (데스크톱) */
  align-items: flex-start;
  min-width: 320px;
  color: #fff;
  text-align: left;
  padding-left: 4%;
  box-sizing: border-box;
  margin-top: 0; /* 데스크톱에서는 마진 없음 */
}

.here-subtitle {
  font-size: 1.08rem;
  margin-bottom: 5px;
  opacity: 0.95;
}

.here-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.here-desc {
  font-size: 1.18rem;
  opacity: 0.95;
  margin-bottom: 42px;
  line-height: 1.6;
}

.here-cta {
  display: inline-block;
  padding: 14px 42px;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--main-blue);
  border: 2px solid #133;
  border-radius: 9px;
  background: #fff;
  text-decoration: none;
  margin-bottom: 16px;
  transition: transform 0.18s;
}

.here-cta:hover {
  transform: translateY(-3px) scale(1.03);
}

/* 손 이미지 영역 */
.here-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-width: 320px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.here-hand-img {
  display: block;
  width: 1000px;
  max-width: 100%;
  height: auto;
  bottom: 100%;
}

/* 하단 흰색 다운로드 부분 */
.here-download {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 50px 0 56px 0;
   margin-bottom: 0 !important;
  padding-bottom: 56px; 
  position: relative;
  z-index: 3;
  min-height: auto; 
  max-height: none; 
  box-sizing: border-box;
}


.download-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 32px;
  box-shadow: 0 2px 16px rgba(30,30,45,0.04); /* 부드러운 그림자 */
}

.qr-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;   
  height: 120px;
  margin-bottom: 4px;
}




.icon-text-row {
  display: flex;
  flex-direction: row;
  align-items: center;      /* 아이콘-텍스트 높이 맞춤 */
  justify-content: center;  /* 가로기준 중앙! */
  gap: 8px;
  /* 아래 2줄이 핵심! */
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.download-icon {
  height: 20px;
  width: 20px;
  display: block;
}

.download-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1d1e1f;
  line-height: 1.1;
}

/* ---------------------------------------------------- */
/* 모바일 반응형 (900px 이하) */
/* ---------------------------------------------------- */
@media (max-width: 900px) {
  
  .here-content {
    flex-direction: column;
    height: auto;
    /* 높이 제한 제거 및 콘텐츠에 맞게 설정 */
    min-height: auto; 
    justify-content: flex-start; 
    align-items: center;
    padding: 60px 0 60px 0; /* 상단 및 하단 여백 추가 (여백 과도 방지) */
    position: static; /* 모바일에서 absolute 기준점 해제 */
  }
  .here-text {
    position: static; /* 일반 흐름으로 복귀 */
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto; /* 중앙 정렬 */
    width: 90%; 
    z-index: 10;
    
    align-items: center; /* 텍스트 박스 내부 요소들을 중앙 정렬 */
    text-align: center; /* 텍스트 중앙 정렬 */
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ********** 손 이미지 영역을 숨김 (데스크톱/모바일 분기) ********** */
  .here-image-wrapper {
    display: none !important; /* 모바일에서만 숨김 */
    min-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }

  .here-title {
    font-size: 2.2rem; 
    margin-bottom: 16px;
  }
  .here-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .here-cta {
    padding: 12px 30px;
    font-size: 1rem;
    margin-bottom: 0; 
  }

  .here-download {
    flex-direction: row; /* 원래는 column으로 세로 배열이지만 가로로 변경 */
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem; /* 전체 하단 여백 */
    gap: 100px; /* 아이템 간격 축소 */
  }
   .download-column {
    flex: 0 0 calc(50% - 2rem); /* 50% 사이즈로 두 개가 가로 배치되도록 */
    box-sizing: border-box;
        margin-bottom: 1rem; /* QR 코드 아래 여백 */
  }
    .qr-wrapper {
        width: 80px;
        height: 80px;
    }
    .download-icon {
    margin-top: 0.5em; /* QR코드 아래 로고 위 여백 */
  }
  .download-label {
    margin-top: 0.5rem; /* 로고 아래 문구 위 여백 */
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .here-content {
    padding: 60px 0 60px 0;
  }
  .here-text {
    width: 95%; 
    padding: 0 10px;
  }
  .here-title {
    font-size: 1.8rem; 
  }
  
  .here-download {
    gap: 40px;
    padding: 30px 0 36px 0;
  }
  .download-column {
    padding: 12px 18px;
  }
  .download-label {
    font-size: 0.9rem;
  }
}
















































/* 푸터 (px -> rem 변환, 좌측 텍스트 기준으로 우측 연락처 크기 조정) */
.site-footer {
    background: #122858;
    color: #fff;
    width: 100%;
    padding: 3.375rem 0 2rem 0; /* 54px 0 32px 0 */
    font-size: 1rem; /* 기본 텍스트 크기 */
}

.footer-inner {
    max-width: 82.5rem; /* 1320px */
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem; /* 40px */
}

.footer-left {
    flex: 1 1 12rem;
}

/* 회사명: 좌측 기준 텍스트 */
.footer-company {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem; /* 8px */
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 1.125rem; /* 18px */
}

/* 저작권 영역: 링크와 텍스트를 모두 포함하며 한 줄로 표시 */
.footer-copyright {
    font-size: 1rem;
    opacity: 0.8;
    /* Flexbox를 사용하여 내부 요소들을 한 줄에 정렬 */
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    flex-wrap: wrap; /* 작은 화면에서 필요하면 줄 바꿈 허용 */
    gap: 0.5rem; /* 요소들 간의 간격 */
}

     .footer-right {
            flex: 0 0 auto; /* 성장하지 않고, 내용물의 너비만큼만 차지합니다. */
            min-width: 15rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* 내부 항목(contact-phone, email)은 왼쪽 정렬 */
            gap: 0; 
            font-size: 1rem;
            color: #fff;
            text-align: left; /* 텍스트 정렬도 왼쪽으로 복구 */
        }

        /* 연락처 스타일 */
        .footer-contact .contact-phone,
        .footer-contact .contact-email {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: medium;
            line-height: 1.3;
            color: #ffffff;
        }

        /* 정책 링크 스타일 */
        .policy-link {
            font-size: 1rem;
            color: #fff;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .policy-link:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* 구분자 스타일 */
        .policy-separator {
            color: #fff;
            opacity: 0.5;
            font-size: 1rem;
        }

        /* --- 사용하지 않는 CSS 제거 --- */
        .policy-links-group {
            /* 이전에 사용된 블록 스타일을 제거하거나 덮어씁니다. */
            display: inline; /* 인라인으로 강제 변경 */
            margin: 0;
            padding: 0;
        }
        /* --- 사용하지 않는 CSS 제거 --- */


        /* 반응형 */
        @media (max-width: 720px) {
            .footer-inner {
                flex-direction: column;
                gap: 0.5rem !important; /* gap을 1rem 이하로 줄이면 두 영역이 더 가깝게 */
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .footer-left {
    width: 100% !important;
    margin-bottom: 0.5rem !important; /* 각 칸 아래 여백 최소화 */
    padding: 0 !important;
            }
           .footer-right {
    width: 100% !important;
    margin-bottom: 0.5rem !important; /* 각 칸 아래 여백 최소화 */
    padding: 0 !important;
            }

            .site-footer {
                padding: 2rem 0 1.5rem 0;
            }
            
            /* 모바일에서 저작권 및 링크가 너무 길 경우 줄바꿈 허용 */
            .footer-copyright {
                display: block; /* 모바일에서 전체 블록으로 변경 */
            }
        }
