/* policy.css */

/* General Styles for Privacy Policy */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #333;
}

header p {
    font-size: 1.2em;
    color: #666;
}

.logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 1.5em;
    margin-top: 30px;
}

p, ul {
    font-size: 1em;
    color: #444;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding-left: 1em;
    text-indent: -1em;
}

ul li:before {
    content: '•';
    color: #007bff;
    font-size: 1.2em;
    padding-right: 10px;
}

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

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #777
