.content {
    position: relative;
    padding: 200px 300px;
    z-index: 1;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/images/bg-privacy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 52px;
    color: #333333;
}

.content .head {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
}

.content .head p {
    font-size: 20px;
    color: #333333;
}

.content p {
    line-height: 32px;
    font-size: 20px;
    color: #333333;
    margin: 20px 0;
}