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

.nav-center {
    display: none;
}

.privacy-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.privacy-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-header {
    margin-top: 64px;
    display: flex;
    padding: 120px 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: var(--Background-BGCoolGrey);
}

.privacy-header h1 {
    color: var(--Text-Navy);
    text-align: center;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 44.8px */
    letter-spacing: -0.8px
}

.privacy-contents {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 155px 120px 155px;
    gap: 80px;
    background: var(--Background-BGWhite);
}

.privacy-contents-contents {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contents-header {
    color: var(--Text-Grey-Title);
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.6px;
}

.contents-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.contents-intro {
    color: var(--Text-Grey-Title);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.45px; 
}

.contents-section h3 {
    color: var(--Text-Grey-Title);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.45px;
}

.contents-section div {
    color: var(--Text-Grey-700);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 21.6px */
    letter-spacing: -0.4px;
}

.terms-section-number {
    display: flex;
    margin-left: 10px;
}

.terms-section-number > div:nth-of-type(2) {
    margin-left: 5px;
}

.terms-section-korean {
    margin-left: 20px;
}

.mobile-show {
    display: none;
}

@media (max-width: 900px) {
    .mobile-delete {
        display: none;
    }

    .mobile-show {
        display: block;
    }
    
    .privacy-contents {
        margin-top: 64px;
        width: 100%;
        max-width: 1440px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 16px 60px 16px;
        gap: 24px;
        background: var(--Background-BGWhite);
    }

    .privacy-contents-header {
        color: var(--Text-Grey-Title);
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 135%; /* 32.4px */
        letter-spacing: -0.6px;
    }

    .privacy-contents-contents {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contents-header {
        font-size: 18px;
        letter-spacing: -0.45px;
    }

    .contents-intro {
        font-size: 16px;
        letter-spacing: -0.4px; 
    }

    .contents-section h3 {
        font-size: 16px;
        letter-spacing: -0.4px;
    }

    .contents-section div {
        font-size: 14px;
        line-height: 135%;
        letter-spacing: -0.35px;
    }
}