body{
    section#privacySection{
        background-color: rgb(255, 255, 255);
        padding-top: 70px;
        text-align: justify;
        width: 80%;
        margin-left: 10%;
    
        .privacyDiv{
            .title{
                display: flex;
                justify-content: center;
            }

            h3{
                padding-top: 20px;
            }

            p{
                padding-top: 5px;
            }
    
            .backBtnDiv{
                display: flex;
                justify-content: center;
                padding-top: 40px;
    
                button{
                    background: #f35525;
                    color: white;
                    width: 120px;
                    height: 30px;
                    border-radius: 10px;
                    border: none;
                    font-weight: bold;
                }
            }
    
        }
    }
}