Files
litecharmsshop/Shop/Components/Pages/Privacy.razor.css
T

59 lines
1.2 KiB
CSS

/* --- Privacy Policy Styling (Adapted from Terms) --- */
.privacy-page {
width: 100%;
background-color: var(--bar-bg);
min-height: 100vh;
display: flex;
justify-content: center;
}
.privacy-container {
max-width: 900px;
width: 90%;
padding: 60px 0;
line-height: 1.8;
color: var(--text-white);
}
.privacy-container h1 {
font-size: 2.5rem;
color: var(--brand-blue);
margin-bottom: 10px;
}
.privacy-container .last-updated {
color: var(--payoff-color);
font-style: italic;
margin-bottom: 40px;
font-size: 0.9rem;
}
.privacy-container h3 {
color: var(--brand-blue);
font-size: 1.4rem;
margin-top: 35px;
margin-bottom: 15px;
border-bottom: 1px solid rgba(0, 150, 199, 0.2);
padding-bottom: 10px;
}
.privacy-container p {
margin-bottom: 20px;
text-align: justify;
word-wrap: break-word;
}
.privacy-container ul {
margin-bottom: 25px;
padding-left: 20px;
}
.privacy-container li {
margin-bottom: 12px;
color: var(--text-white);
}
.privacy-container strong {
color: var(--payoff-color);
}