49 lines
1.1 KiB
CSS
49 lines
1.1 KiB
CSS
/* --- Terms & Conditions Styling --- */
|
|
.terms-page {
|
|
width: 100%;
|
|
background-color: var(--bar-bg);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.terms-container {
|
|
max-width: 900px; /* Limits width for readability */
|
|
width: 90%;
|
|
padding: 60px 0;
|
|
line-height: 1.8; /* Improves readability */
|
|
color: var(--text-white);
|
|
}
|
|
|
|
.terms-container h1 {
|
|
font-size: 2.5rem;
|
|
color: var(--brand-blue);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.terms-container .last-updated {
|
|
color: var(--payoff-color);
|
|
font-style: italic;
|
|
margin-bottom: 40px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.terms-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;
|
|
}
|
|
|
|
.terms-container p {
|
|
margin-bottom: 20px;
|
|
text-align: justify; /* Optional: gives a formal look */
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.terms-container strong {
|
|
color: var(--payoff-color);
|
|
}
|