* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#privacy-main-container {
    height: fit-content;
    width: 100%;
    background-color: #08354e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#privacy-heading-container {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid white;
    justify-content: center;
}

#privacy-heading {
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: fit-content;
    padding: 50px 0;
    font-size: 35px;
    color:  #33cbd9;
    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;
}
#privacy-bottom-container {
    height: auto;
    width: 70%;
    display: flex;
    padding: 20px 0;
    gap: 20px;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

#privacy-bottom-container h5 {
    color: white;
    text-align: left;
    width: 100%;
    margin-top: 40px;
}

#privacy-bottom-container p {
    text-align: left;
    color: white;
}
#privacy-bottom-container p span{
    color:  #33cbd9;
}

#privacy-bottom-container h2 {
    color:  #33cbd9;
    text-align: left;
}

#privacy-bottom-container span {
    font-weight: 500;
    color: white;
}

@media (max-width: 600px) {
    #privacy-upper-container {
        height: 300px;
        width: 80%;
    }
}
