.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#privacy-policy, #terms-and-conditions, #security-policy {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 100px; /* scroll higher than the default anchor */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.main-content p {
    width: 750px;
    font-size: 22px;
    line-height: 1.5;
    text-align: justify;
}

h1 {
    width: 750px;
    font-size: 35px;
}

h2 {
    width: 750px;
    font-size: 27px;
    font-weight: bold;
}

h3 {
    width: 750px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
}

/*h4 {
    width: 750px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
}*/

ul {
    width: 750px;
    margin-top: -10px;
    font-size: 22px;
    font-weight: normal;
    padding-left: 50px; /* Removes padding for better alignment */
}

li {
    margin-bottom: 12px;
}
li:last-child {
    margin-bottom: 0;
}

.divider {
    width: 750px;
    border: 0;                    /* remove default border */
    height: 1px;                  /* thickness */
    background: var(--text-color);          /* color */
    margin: 24px 0;               /* vertical spacing */
}

.redirect {
    color: var(--white);
    text-decoration: underline;
    text-shadow: none;

    white-space: normal;        /* allow wrapping */
    word-break: break-word;     /* break long words/URLs if needed */
    /*overflow-wrap: anywhere;    /* extra guarantee for very long strings */*/

}

.main-content p.no-justify {
    text-align: left;
}





/* SCREEN SIZE VARIANTS */
/* where right side is gone */
@media (max-width: 1200px) {
    .main-content p {
        width: 600px;
    }

    h1 {
        width: 600px;
    }

    h2 {
        width: 600px;
    }

    h3 {
        width: 600px;
    }

    /*h4 {
        width: 600px;
    }*/

    ul {
        width: 600px;
    }

    .divider {
        width: 600px;
    }
}


/* 768 */
/* where both sides are gone */
@media (max-width: 865px) {
    .main-content p {
        width: 400px;
    }

    h1 {
        width: 400px;
    }

    h2 {
        width: 400px;
    }

    h3 {
        width: 400px;
    }

    /*h4 {
        width: 400px;
    }*/

    ul {
        width: 400px;
    }

    .divider {
        width: 400px;
    }
} 



/* for mobile */
/* 360px for my android */
/*@media (pointer: coarse)*/
@media (max-width: 450px) {
    #privacy-policy, #terms-and-conditions, #security-policy {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .main-content p {
        width: 300px;
    }

    h1 {
        width: 300px;
    }

    h2 {
        width: 300px;
    }

    h3 {
        width: 300px;
    }

    /*h4 {
        width: 300px;
    }*/

    ul {
        width: 300px;
    }

    .divider {
        width: 300px;
    }
}