/* 언어설정 */
@charset 'utf-8';
@font-face {
  font-family: 'SUIT-Regular';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KCCHyerim-Regular';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/KCCHyerim-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


/* 전체설정 */
* {
  margin: 0;
  padding: 0;
  font-family: 'SUIT-Regular';
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* 색상 설정 */
:root {
    --main-navi: #204B62;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 40px 20px;
}

.disclaimer-wrapper {
    max-width: 900px;
    margin: auto;
}

.disclaimer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-logo img {
    width: 220px;
}

.disclaimer-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1d4b5a;
    text-align: center;
}

h2 {
    font-size: 20px;
    margin-top: 30px;
    color: #204B62;
}

.intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    text-align: center;
}

.updated-date {
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    text-align: right;
}
  
/* -------------------------------------------------------------------------------------------------------- */

/* 반응형 */

  @media screen and (max-width: 480px) {
    .disclaimer-container {
      padding: 20px;
    }
  
    h1 {
      font-size: 20px;
    }
  
    h2 {
      font-size: 17px;
    }
  
    .intro {
      font-size: 14px;
    }
  }
  