@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://hangeul.pstatic.net/hangeul_static/css/NanumMyeongjo.css');

body {
    font-family: 'NanumMyeongjo', 'Pretendard', sans-serif;
    color: #251D1B;
    word-break: keep-all;
    text-wrap: balance;
}


* {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 100%;
    box-sizing: border-box;
    font-size: 16px;
}

h1,
h2,
h3 {
    font-family: 'NanumMyeongjo';
}

h1 {
    font-size: 3.6rem;
    line-height: 4.6rem;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    font-size: 1.2rem;
    font-family: pretendard;
}





.wrap {
    width: 100%;
    max-width: 1000px;
    padding: 4rem 5%;
    margin: auto;
}

.wrap-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* title */
.title-container {
    width: 100%;
    max-width: fit-content;
    color: #9A7163;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.title-container h1 {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: #9A7163 solid 5px;
}

/* text */
.text-wrap {
    text-align: center;
}

.text-wrap>p {
    font-family: 'NanumMyeongjo';
    color: #251D1B;
    font-size: 1.2rem;
}

/* policy */
.policy-container {
    width: 80%;
    background-color: #F2F2F2;
    border-bottom: #9A7163 solid 2px;
}

.policy-title {
    text-align: center;
    background-color: #E0D8D5;
    border-top: #9A7163 solid 2px;
    border-bottom: #9A7163 solid 2px;
    padding: 0.3rem;
}

.policy-section {
    margin: 5%;
    display: flex;
    justify-content: center;
}

.policy-section>div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.policy-section h3 {
    padding: 0.3rem 0;
    color: #9A7163;

}

.section {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.5em 0;
}

.section-title p{
    font-family: 'NanumMyeongjo';
    color: #9A7163;
    min-width: 60px;
    flex-shrink: 0;
}

.section-text {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

/* bottom */
.bottom-container {
    display: flex;
    justify-content: center;
}

.bottom-wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.bottom-logo img {
    height: 40px;
}

.bottom-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bottom-name div {
    display: flex;
    align-items: center;
    margin-left: -2rem;
}

.bottom-name p {
    font-size: 1.3rem;
}

.bottom-name h3 {
    font-size: 2rem;
}




/* mobile */
@media screen and (max-width: 768px){

    h1,
    h2,
    h3 {
        font-family: 'NanumMyeongjo';
    }
    
    h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-family: pretendard;
    }

    .wrap-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .text-wrap>p {
        font-family: 'NanumMyeongjo';
        color: #251D1B;
        font-size: 1.1rem;
    }

    .title-container h1 {
        text-align: center;
        padding-bottom: 0.5rem;
        border-bottom: #9A7163 solid 3px;
    }

    /* bottom */
    .bottom-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .bottom-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .bottom-name div {
        display: flex;
        align-items: center;
    margin-left: 0;
    }

    .bottom-name p {
        font-size: 1rem;
    }

    .bottom-name h3 {
        font-size: 1.5rem;
    }



    
}