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

html {
  color-scheme: only light; /*  삼성인터넷 다크모드 자동 반전 방지 */
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
}

.privacy-policy-section {
    padding: 60px 20px 40px;
    background-color: #fff;
    position: relative;
}

.privacy-policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #041647;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #041647;
}

.privacy-policy-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.privacy-policy-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #041647;
    margin: 25px 0 15px;
}

.privacy-policy-content p {
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
}

.return-home {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 12px 20px;
    background-color: #041647;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
footer{
    padding : 0 20px;

    >div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        >div{

            >p{
                font-size: 0.9rem;
            }
        }
    }
}

.back{
    margin: 0px auto;
    text-decoration: none;
    background-color: navy;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    max-width: 500px;
}