html, body {
    font-family: "Noto Sans KR", sans-serif;
    height: 100%;
    scroll-behavior: smooth;
}
/*header*/
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}
.scrolled {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-stroke);
}
header .logo {
    width: 130px;
}
header .logo a {}
header .logo a img {
    width: 100%;
}
header .tab {
    display: flex;
    flex-direction: row;
    gap: 45px;
}
header .tab a {
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}
header .tab a.active {
    color: var(--color-main);
}
.menu ul li a.active {
    color: #84aaff;
}
header select {
    background: var(--color-white);
    border: 1px solid var(--color-bg);
    padding: 5px;
    height: 30px;
    border-radius: 5px;
    color: #454545;
}
header select:focus {
    outline: none;
}
header select option {
    background: var(--color-white);
}

/*햄버거메뉴*/
.menu-container {
    position: relative;
}
.menu-button {
    background: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    border-radius: 5px;
}
.menu-button img {
    width: 32px;
}
.menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #333;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding-bottom: 50px;
    overflow-y: auto;
}
.menu.show {
    transform: translateX(0);
}
.menu ul {
    list-style-type: none;
    padding: 0;
}
.menu ul li {
    padding: 15px;
    border-bottom: 1px solid #555;
}
.menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}
.menu .ft {padding: 25px 15px;display: flex;flex-direction: column;gap: 15px;}
.menu .ft > span {font-size: var(--s-14);color: #a3a3a3;}
.menu .ft > span span {color: #fff;display:inline-block;line-height:1.3;margin-top: 3px;}
.menu .ft > span em {color: #fff;font-size: var(--s-18);}
.menu .ft > span:nth-child(2) em {
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.privacy-policy {
    width: 100%;
    max-width: 1200px;
    margin: 120px auto;
    padding: 40px;
    background: #f1f1f1;
    border-radius: 10px;
}
.privacy-policy h1, .privacy-policy h2, .privacy-policy h3, .privacy-policy p, .privacy-policy ul, .privacy-policy li {line-height: 1.5;}
.privacy-policy h1 {
    font-size: var(--s-26);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 20px;
}
.privacy-policy h2 {
    font-size: var(--s-18);
    font-weight: 500;
    margin: 10px 0 5px;
}
.privacy-policy a {
    color: blue;
    text-decoration: underline;
}
.privacy-policy ul li {
    color: #373737;
}

/*footer*/
footer {background: var(--color-bgLight);}
footer .foot {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 185px;
    flex-wrap: wrap;
}
footer .foot h2 {width: 130px;}
footer .foot h2 img {width: 100%;}
footer .foot ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid var(--color-main);
    padding: 0 20px;
    height: 70px;
    justify-content: center;
}
footer .foot ul li {
    display: flex;
    align-items: center;
}
footer .foot ul li span {font-size:var(--s-14);width: auto !important;display: inline-block;}
footer .foot ul li em {font-size:var(--s-14);font-weight: 500;}
footer .foot .f3 {display: flex;flex-direction: column;}
footer .foot ul .f_num {
    width: auto;
    font-weight: 600;
    font-size: var(--s-24);
}
footer .f2-2 li span {
    border-bottom: 1px solid #dadada;
    padding: 5px 10px;
    font-weight: 500;
}