@import url('./header-footer.css');
@import url('./products.css');
@import url('./dashboard.css');
@import url('./inputs.css');
@import url('./buttons.css');
@import url('./tags.css');
@import url('./images.css');
:root {
    --n-font-size: 18px;
    --s-font-size: 16px;
    --xs-font-size: 14px;
    --xxs-font-size: 12px;
    --l-font-size: 20px;
    --xl-font-size: 22px;

    --title-font-size: 30px;
    --card-icon-size: 50px;

    --n-font-weight: 450;
    --l-font-weight: 350;
    --b-font-weight: 550;

    --n-font-color: #666;
    --l-font-color: #999;
    --d-font-color: #333;

    --background-color: #FCE2E6;

    /* Original background color: #FADADD */
    /* Original background pattern color: #FADADD */

    --primary-color: #E195AB;
    --hover-color: #F37199;

    --header-height: 100px;
    --footer-height: 60px;

    --box-shadow-5px: 5px 5px 0 0 rgba(0, 0, 0, 0.16);
    --box-shadow-4px: 4px 4px 0 0 rgba(0, 0, 0, 0.15);
    --box-shadow-3px: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    --box-shadow-2px: 2px 2px 0 0 rgba(0, 0, 0, 0.13);
    --box-shadow-1px: 1px 1px 0 0 rgba(0, 0, 0, 0.12);

    --text-shadow-3px: 3px 3px 0 rgba(0, 0, 0, 0.14);
    --text-shadow-2px: 2px 2px 0 rgba(0, 0, 0, 0.13);
    --text-shadow-1px: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
    :root {
        --n-font-size: 16px;
        --s-font-size: 14px;
        --xs-font-size: 12px;
        --l-font-size: 18px;
        --xl-font-size: 20px;
        --card-icon-size: 40px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka';
    color: var(--n-font-color);
}
a {
    text-decoration: none;
}
body {
    min-height: 100vh;
    font-size: var(--n-font-size);
    font-weight: var(--n-font-weight);
}
.main-content {
    background-color: var(--background-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='133' viewBox='0 0 20 20'%3E%3Cg %3E%3Cpolygon fill='%23F8DADB' points='20 10 10 0 0 0 20 20'/%3E%3Cpolygon fill='%23F8DADB' points='0 10 0 20 10 20'/%3E%3C/g%3E%3C/svg%3E");

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    min-height: calc(100vh - var(--header-height));
    width: 100%;
}
.card {
    background-color: #fff;
    box-shadow: var(--box-shadow-3px);
    padding: 32px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
}
.privacy-policy {
    width: 100%;
    max-width: 600px;
    line-height: 1.6;
}
.privacy-policy h1 {
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow-2px);
    color: #333;
    text-align: center;
    width: 100%;
}
.privacy-policy h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #444;
    text-shadow: var(--text-shadow-2px);
}
.privacy-policy h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #444;
    text-shadow: var(--text-shadow-1px);
}
.privacy-policy p {
    margin-bottom: 1rem;
    color: #555;
}
.privacy-policy ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.privacy-policy ul li {
    margin-bottom: 0.5rem;
    color: #555;
}
.privacy-policy a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.privacy-policy a:hover {
    color: var(--hover-color);
}
@media (max-width: 768px) {
    .privacy-policy h2 {
        font-size: 1.25rem;
    }
    .privacy-policy h3 {
        font-size: 1.1rem;
    }
}