@font-face {
  font-family: 'InkLiquid';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff');
  font-weight: normal;
  font-display: swap;
}

@font-face {
    font-family: 'SeoulHangang';
    src: local('SeoulHangangM'),
    url('../fonts/SeoulHangangM.woff2') format('woff2'),
    url('../fonts/SeoulHangangM.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

/* Pretendard Variable is loaded via the dynamic subset stylesheet in the document head. */

.pretendard-variable {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.SeoulHangang {
  font-family: 'SeoulHangang';
}

.InkLiquid {
  font-family: 'InkLiquid';
}

.Pretendard {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea,
select,
button,
table {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-size: 24px;
  font-weight: 500;
  word-break: keep-all;
  line-height: 1.3;
  word-break: break-all;
  color: #333;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

em {
  font-style: normal;
}

br.mo-none {
  display: none;
}

p {
  font-size: 1rem;
}

#home-philosophy-jipijigi-div-8 {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* -------------------------------------------------------------------------- */
/* Primary navigation (revive-theme style)                                     */
/* -------------------------------------------------------------------------- */

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  display: block;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 0;
  border-bottom: 1px solid currentColor;
  transition: width 0.3s;
}

.nav-item.menu-item-has-children > .nav-link {
  padding-right: 16px;
}

.nav-item.menu-item-has-children > .nav-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.75;
}

.nav-item.menu-item-has-children:hover > .nav-link::before,
.nav-item.menu-item-has-children:focus-within > .nav-link::before,
.nav-item.menu-item-has-children.is-open > .nav-link::before {
  transform: translateY(-50%) rotate(-135deg);
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after,
.nav-item.is-open .nav-link::after {
  width: 100%;
  left: 0;
}

.dropdown-menu {
  padding: 8px 0;
}

.dropdown-item:hover {
  background: transparent;
}

.dropdown-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  border-bottom: 1px solid currentColor;
  transition: width 0.3s;
}

.dropdown-item:hover .dropdown-link {
  color: #ff0000;
}

.dropdown-item:hover .dropdown-link::after {
  width: 100%;
  left: 0;
}

.info-banner__left {
  background: linear-gradient(135deg, #111 89%, transparent 0%);
}

.nav-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: height 180ms ease, opacity 180ms ease;
  z-index: 10;
}

.nav-bg.is-active {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* Mobile drawer submenu toggles                                               */
/* -------------------------------------------------------------------------- */

#anlab-mobile-menu-drawer .anlab-mobile-menu-row {
  display: flex;
  align-items: center;
}

#anlab-mobile-menu-drawer .anlab-mobile-menu-row:hover {
  background-color: #f9fafb;
}

#anlab-mobile-menu-drawer .anlab-mobile-menu-row > a {
  flex: 1 1 auto;
}

#anlab-mobile-menu-drawer .anlab-mobile-submenu-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
}

#anlab-mobile-menu-drawer .anlab-mobile-submenu-toggle:hover {
  color: #374151;
}

#anlab-mobile-menu-drawer .anlab-mobile-submenu-toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 6px;
}

#anlab-mobile-menu-drawer .anlab-mobile-submenu-toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

#anlab-mobile-menu-drawer .anlab-mobile-submenu-toggle[aria-expanded="true"]
  .anlab-mobile-submenu-toggle-icon {
  transform: rotate(180deg);
}

/* -------------------------------------------------------------------------- */
/* Sticky header on scroll                                                     */
/* -------------------------------------------------------------------------- */

body.is-scrolled .site-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1a1a1a;
  border-bottom-color: #333;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Restore sensible typography for editor content wrapped in Tailwind Typography's `.prose`. */
.prose ul,
.prose ol {
  list-style-position: outside;
  padding-left: 1.25em;
}

.prose ul li {
  list-style-type: disc;
}

.prose ol li {
  list-style-type: decimal;
}

/* -------------------------------------------------------------------------- */
/* Floating quick success case ticker                                          */
/* -------------------------------------------------------------------------- */

[data-anlab-success-case-ticker] {
  --anlab-success-case-ticker-height: 46px;
  height: var(--anlab-success-case-ticker-height);
  min-height: var(--anlab-success-case-ticker-height);
  overflow: hidden;
}

[data-anlab-success-case-ticker] [data-anlab-success-case-ticker-track] {
  display: flex;
  flex-direction: column;
}

[data-anlab-success-case-ticker] [data-anlab-success-case-ticker-item] {
  height: var(--anlab-success-case-ticker-height);
}

/* -------------------------------------------------------------------------- */
/* Home: Online counsel (#onlineCounselWrap)                                   */
/* -------------------------------------------------------------------------- */

#onlineCounselWrap {
  --anlab-online-counsel-accent: #971300;
}

#anlab-contact-board-latest .anlab-contact-board-latest__header-accent {
  color: var(--anlab-online-counsel-accent);
}

#anlab-contact-board-latest .anlab-contact-board-latest__header {
  color: #434240;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
}

#anlab-contact-board-latest .anlab-contact-board-latest__swiper {
  height: 238px;
  overflow: hidden;
}

#anlab-contact-board-latest .swiper-slide {
  border-bottom: 1px solid #d3d3d3;
}

#anlab-contact-board-latest .swiper-slide:hover {
  background: #e5e5e5;
}

#anlab-contact-board-latest .swiper-slide a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

#anlab-contact-board-latest .anlab-contact-board-latest__item {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

#anlab-contact-board-latest .anlab-contact-board-latest__status {
  flex: 0 0 100px;
  text-align: right;
}

#anlab-contact-board-latest .anlab-contact-board-latest__status-badge {
  display: inline-block;
  padding: 7px 5px;
  min-width: 100px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  background-color: #959595;
  border-radius: 5px;
  box-sizing: border-box;
}

#anlab-contact-board-latest .anlab-contact-board-latest__status-badge--pending {
  background-color: #989898;
}

#anlab-contact-board-latest .anlab-contact-board-latest__status-badge--completed {
  background-color: var(--anlab-online-counsel-accent);
}

#anlab-contact-board-latest .anlab-contact-board-latest__title {
  flex: 1;
  display: flex;
  padding-left: 20px;
  justify-content: flex-start;
  align-items: center;
}

#anlab-contact-board-latest .anlab-contact-board-latest__title-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: normal;
  color: #454440;
  font-size: 17px;
}

#anlab-contact-board-latest .anlab-contact-board-latest__lock {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  line-height: 1;
  vertical-align: text-top;
}

#anlab-contact-board-latest .anlab-contact-board-latest__new {
  display: inline-block;
  padding: 2px 2px;
  line-height: 10px;
  font-size: 10px;
  color: var(--anlab-online-counsel-accent);
  background-color: unset;
  font-weight: 600;
  vertical-align: text-top;
  margin-left: 6px;
}

#anlab-contact-board-latest .anlab-contact-board-latest__date {
  flex: 0 0 80px;
  text-align: center;
  color: #a1a1a1;
  font-size: 14px;
}

#anlab-contact-board-latest .anlab-contact-board-latest__link {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--anlab-online-counsel-accent);
  background: #fff;
  width: 100%;
  max-width: 620px;
  height: 64px;
  line-height: 64px;
  border: 1px solid var(--anlab-online-counsel-accent);
  text-align: center;
  margin: 10px auto 0;
  text-decoration: none;
}

#anlab-contact-board-latest .anlab-contact-board-latest__link:hover {
  color: #fff;
  background: var(--anlab-online-counsel-accent);
}

#anlab-contact-board-latest .anlab-contact-board-latest__date--mobile {
  display: none;
  margin-top: 6px;
  flex: 0 0 0;
}

@media (max-width: 1023px) {
  #anlab-contact-board-latest .anlab-contact-board-latest__header {
    font-size: 23px;
    margin-bottom: 22px;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__date--mobile {
    display: block;
    margin: 0;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__date:not(.anlab-contact-board-latest__date--mobile) {
    display: none;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__title {
    padding-left: 12px;
    flex-direction: column;
    
    align-items: flex-start;
    justify-content: center;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__title-text {
    font-size: 15px;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__status {
    flex: 0 0 90px;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__status-badge {
    min-width: 80px;
    font-size: 14px;
  }

  #anlab-contact-board-latest .anlab-contact-board-latest__item {
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  /* 모바일에서 NEW 태그 숨김 */
  #anlab-contact-board-latest .anlab-contact-board-latest__new {
    display: none;
  }

  /* 모바일에서 자물쇠 아이콘 숨김 */
  #anlab-contact-board-latest .anlab-contact-board-latest__lock {
    display: none;
  }
}

/* Online Counsel Message */
.anlab-online-counsel-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  display: none;
  font-size: 16px;
}

.anlab-online-counsel-message--success {
  background-color: #efe;
  color: #270;
  border: 1px solid #cfc;
}

.anlab-online-counsel-message--error {
  background-color: #fee;
  color: #c33;
  border: 1px solid #fcc;
}


/*
-------------------------------------------------------------------------------
 DAY : 2026-03-10
 COMMENT : 특정 문구 타이핑 효과(Typing Effect) 도입 요청
 NAME : leecj
 APPLY : 성범죄, 음주, 형사
 ------------------------------------------------------------------------------
*/

.typing-container {
  display: inline-block;
  min-width: 206px;
}
@media (max-width: 1280px) {
  .typing-container {
    min-width: 170px;
  }
}

@media (max-width: 1024px) {
  .typing-container {
    min-width: 156px;
  }
}

.typing-effect {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #e1c594;
  width: 0;
  animation:
          typing 2.5s steps(15) infinite,
          blink-caret 0.65s step-end infinite;
}

@keyframes typing {
  /*from { width: 0; }*/
  /*to { width: 100%; }*/
  0% { width: 0; }
  50% { width: 100%; }
  95% { width: 100%; }
  95.1% { width: 0; }
  100% { width: 0; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #e1c594; }
  /*100% { border-color: transparent; }*/
}

/*
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
*/

/*
-------------------------------------------------------------------------------
-- start : 2026-03-18 푸터영역 리모델링
-------------------------------------------------------------------------------
*/

footer {
  background: #2b3a4a;
  color: #b8bdc4;
  font-family: 'Pretendard', sans-serif;
}

.footer-wrap {
  width: 100%;
  background: linear-gradient(90deg, #1e272e 0%, #2f3b47 100%);;
}

.footer-wrap-logo {
  display: none;
}
.info-mobile {
  display: none;
}
.footer-top-desktop {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
}

.footer-section-row{
  display: flex;
  gap: 40px;
}

.section-title-desktop {
  font-size: 18px;
  color: #fff;
  /*margin-bottom: 18px;*/
  letter-spacing: -0.3px;
  width: 100%;
  max-width: 160px;
  text-align: center;
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.section-links span {
  color: #c8d0d8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-bottom {
  background: #1e2831;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  padding: 40px 20px 60px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  flex: 1;
  align-self: end;
  text-align: left;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-logo-img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover{
  color: #A0C4FF;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.company-info {
  margin-bottom: 20px;
  font-style: normal !important;
}

.company-info p {
  font-size: 14px;
  color: #8a929b;
  line-height: 1.8;
  margin-bottom: 5px;
}

.separator {
  color: #3d4854;
  margin: 0 1px;
  font-weight: 700;
}

.copyright {
  color: #5a6470;
  margin-top: 20px;
}

.copyright p{
  font-size: 14px!important;
}

.footer-right {
  /*flex: 0 0 280px;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /*align-self: center;*/
}

.cta-box {
    background: #252d36;
    border-radius: 12px;
    padding: 6px 20px;
    text-align: center;
    text-decoration: none;
    justify-content: space-around;
    transition: all 0.3s ease;
    border: 1px solid hsla(0, 0%, 100%, .2);
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 320px;
}

.cta-box:hover {
  background: #2a343e;
  box-shadow: 0 10px 30px rgba(62, 180, 137, 0.2);
}

.cta-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  /*margin-bottom: 8px;*/
  line-height: 1.4;
}

.cta-box-number {
  font-size: 26px;
  font-weight: 700;
  color: #FF3131;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 10px;
  /*justify-content: center;*/
  justify-content: flex-start;
  padding: 15px 0;
  /*border-top: 1px solid hsla(0, 0%, 100%, .1);*/
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.6;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-icon:last-child svg {
  width: 24px;
  height: 24px;
}

.social-icon svg g[fill="#42d31a"],
.social-icon svg path[fill="#42d31a"] {
  fill: #fff !important;
}

.social-icon svg path[fill="#fff"] {
  fill: #d31145 !important;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-top-mobile, .footer-cta-mobile {
  display: none;
}

@media (max-width: 1280px) {
  /*.footer-bottom-container { margin-bottom: 100px;}*/
  .footer-bottom { padding-bottom: 120px;}

}

@media (max-width: 1024px) {
  .footer-bottom-container { gap: 30px; }
  .footer-bottom { padding-bottom: 140px;}
}

@media (max-width: 768px) {
  .footer-top-desktop { display: none; }
  .footer-top-mobile { display: block; border-bottom: 1px solid #2d3740; }
  .info-pc {
    display: none;
  }

  .info-mobile {
    display: block;
  }

  .info-mobile p {
    margin: 5px 0;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-section-mobile .summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: #252d36;*/
    color: #fff;
  }

  .footer-section-mobile .summary::-webkit-details-marker { display: none; }

  .section-content-mobile {
    padding: 0 20px 16px;
    /*background: #1e2831;*/
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
  }

  .section-content-mobile span {
    display: block;
    padding: 6px 0 0;
    font-weight: 400;
    color: #a8b2bc;
    text-decoration: none;
    font-size: 15px;
  }

  .footer-cta-mobile {
    display: flex;
    padding: 6px 20px;
    background: #1e2831;
    gap: 16px;
    border-bottom: 1px solid #2d3740;
    justify-content: space-around;
  }

  .cta-btn {
    /*flex: 1;*/
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }

  .cta-btn.primary { background: #2d3740; color: white; border: 1px solid #3eb489; }
  .cta-btn.danger {
    /*background: #c85a54; */
    color: white;
  }

  .footer-bottom-container {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }

  .footer-left, .footer-right { width: 100%; align-items: center; }
  .footer-links, .social-icons {
    justify-content: flex-start;
    border: none;
    padding : 0;
    align-self: center;
  }
  .footer-right { order: -1; margin-bottom: 40px; display: none; }
  .origin-wrap { display: none; }
  .separator { display: none!important; }
  .company-info span { display: block; line-height: 1.6}
  .footer-wrap-logo { display: block; margin-bottom: 24px;}
  .footer-wrap-logo a img {
    width: auto;
    max-width: 120px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .footer-logo-img { height: 28px; }
  /*.cta-box-number { font-size: 22px; }*/
}

.section-title-mobile {
  font-size: 18px;
}

.toggle-icon {
  font-size: 18px;
}
/*
-------------------------------------------------------------------------------
-- end : 2026-03-18 푸터영역 리모델링
-------------------------------------------------------------------------------
*/
/*
-------------------------------------------------------------------------------
-- start : 푸터전용 css
-------------------------------------------------------------------------------
*/

.open-privacy-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.open-privacy-btn:hover {
    background: #000;
}

/* 모달 배경 */
.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-modal-overlay.privacy-modal-active {
    opacity: 1;
    visibility: visible;
}

/* 모달 */
.privacy-modal-wrapper {
    background: white;
    width: 100%;
    max-width: 620px;
    min-width: 320px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.privacy-modal-overlay.privacy-modal-active .privacy-modal-wrapper {
    transform: scale(1);
    opacity: 1;
}

/* 헤더 */
.privacy-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.privacy-modal-close-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.privacy-modal-close-btn:hover {
    color: #000;
}

/* 본문 */
.privacy-modal-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.privacy-modal-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.privacy-modal-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 16px;
}

.privacy-modal-table-wrap {
    margin: 16px 0;
    overflow-x: auto;
}

.privacy-modal-content table {
    min-width: 560px;
    width: 100%;
    border-collapse: collapse;
    background: white;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #111;
    margin : 10px 0;
}

.privacy-modal-content thead {
    background: #f9f9f9;
}

.privacy-modal-content th {
    border: 1px solid #858585;
    padding: 12px;
    font-weight: 600;
}

.privacy-modal-content td {
    border: 1px solid #858585;
    padding: 14px;
    vertical-align: middle;
}

/* 푸터 */
.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}

.privacy-modal-footer button {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #ddd;
    cursor: pointer;
    background: white;
}

.privacy-modal-btn-cancel {
    color: #666;
}

.privacy-modal-btn-cancel:hover {
    background: #f5f5f5;
}

.privacy-modal-btn-confirm {
    background: #111;
    color: white;
    border-color: #111;
}

.privacy-modal-btn-confirm:hover {
    background: #000;
}

/* 반응형 */
@media (max-width: 768px) {
    .privacy-modal-wrapper {
        max-height: 80vh;
    }

    .privacy-modal-header {
        padding: 16px 20px;
    }

    .privacy-modal-title {
        font-size: 16px;
    }

    .privacy-modal-content {
        padding: 20px;
    }

    .privacy-modal-content h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .privacy-modal-content p {
        font-size: 14px;
    }

    .privacy-modal-content table {
        font-size: 13px;
    }

    .privacy-modal-content th,
    .privacy-modal-content td {
        padding: 10px;
    }

    .privacy-modal-footer {
        padding: 14px 20px;
    }

    .privacy-modal-footer button {
        font-size: 14px;
        padding: 11px;
    }
}

@media (max-width: 480px) {
    .privacy-modal-overlay {
        padding: 0 20px;
    }

    .privacy-modal-wrapper {
        max-width: 100%;
        max-height: 60vh;
    }

    .privacy-modal-header {
        padding: 14px 16px;
    }

    .privacy-modal-title {
        font-size: 15px;
    }

    .privacy-modal-content {
        padding: 16px;
    }

    .privacy-modal-content h2 {
        font-size: 17px;
    }

    .privacy-modal-content p {
        font-size: 13px;
    }

    .privacy-modal-content table {
        font-size: 12px;
        min-width: 480px;
    }

    .privacy-modal-footer {
        padding: 12px 16px;
    }
}

/* 스크롤바 */
.privacy-modal-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-modal-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.privacy-modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
}

.disclaimer-section strong {
    font-size: 20px;
}