* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#privacy-main-container {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    align-items: center;
    flex-direction: column;
}

#privacy-heading-container {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121216;
    padding: 50px 0;
}

#privacy-heading {
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: fit-content;
    width: 50%;
}

#privacy-heading span, #privacy-heading h2 {
    color: white;
}

#privacy-second-main-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: whitesmoke;
}

#privacy-upper-container {
    height: 300px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

#privacy-upper-container h2 {
    color: #1694a0;
}

#privacy-upper-container p {
    color: black;
    font-size: small;
    cursor: pointer;
}

#privacy-upper-container span {
    font-size: small;
    color: gray;
    cursor: pointer;
}

#privacy-upper-container span:hover {
    color: black;
}

#privacy-upper-container a {
    font-size: 30px;
    text-decoration: none;
    color: black;
}

#privacy-upper-container a:hover {
    color: #1694a0;
}

#privacy-bottom-container {
    height: auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

#privacy-bottom-container h1 {
    color: gray;
}

#privacy-bottom-container p {
    text-align: left;
    color: black;
    font-size: small;
}

#privacy-bottom-container h2 {
    color: black;
    text-align: left;
}

#privacy-bottom-container span {
    font-weight: 500;
    color: black;
}

@media (max-width: 600px) {
    #privacy-upper-container {
        height: 300px;
        width: 80%;
    }
}
