1 | .privacy-policy-container {
|
---|
2 | max-width: 800px; /* Set a max width for the content */
|
---|
3 | margin: 50px auto; /* Center the container with top/bottom margin */
|
---|
4 | padding: 20px; /* Add some padding for inner spacing */
|
---|
5 | background-color: #f9f9f9; /* Light background for contrast */
|
---|
6 | border: 1px solid #ddd; /* Subtle border for structure */
|
---|
7 | border-radius: 8px; /* Rounded corners */
|
---|
8 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
|
---|
9 | }
|
---|
10 |
|
---|
11 | .privacy-policy-container h1,
|
---|
12 | .privacy-policy-container h2 {
|
---|
13 | color: #333; /* Darker color for headings */
|
---|
14 | margin-bottom: 20px; /* Add spacing below headings */
|
---|
15 | }
|
---|
16 |
|
---|
17 | .privacy-policy-container p {
|
---|
18 | color: #555; /* Slightly lighter color for paragraph text */
|
---|
19 | line-height: 1.6; /* Increase line height for readability */
|
---|
20 | margin-bottom: 15px; /* Add spacing below paragraphs */
|
---|
21 | }
|
---|
22 |
|
---|
23 | .privacy-policy-container ul {
|
---|
24 | margin-left: 20px; /* Indent lists */
|
---|
25 | margin-bottom: 20px; /* Space below lists */
|
---|
26 | }
|
---|
27 |
|
---|
28 | .privacy-policy-container ul li {
|
---|
29 | margin-bottom: 10px; /* Add spacing between list items */
|
---|
30 | }
|
---|
31 |
|
---|
32 | .privacy-policy-container a {
|
---|
33 | color: #007bff; /* Link color */
|
---|
34 | text-decoration: none; /* Remove underline by default */
|
---|
35 | }
|
---|
36 |
|
---|
37 | .privacy-policy-container a:hover {
|
---|
38 | text-decoration: underline; /* Add underline on hover */
|
---|
39 | }
|
---|