:root {
    --thm-font: "Inter", sans-serif;
    --signup: #1652f0;
    --text1: #262626;
    --text2: #86868e;
    --background-color: #ffffff;
    --search: #f4f4f4;
}

* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}


.privacy-policy {
    background-color: #fff;
    max-width: 900px;
    margin: auto;
    padding: 150px 30px 50px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    color: #333;
}

.privacy-policy h1 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 28px;
    color: #007bff;
}

.privacy-policy h2 {
    color: #007bff;
    font-size: 22px;
    margin-top: 30px;
}

.privacy-policy h3 {
    font-size: 18px;
    margin-top: 20px;
    color: #555;
}

.privacy-policy ul,
.privacy-policy ol {
    margin: 10px 0 20px 25px;
}

.privacy-policy a {
    color: #007bff;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}