/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    color: #333;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Container */
.privacy-policy {
    width: 80%;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.privacy-policy h2 {
    font-size: 1.5em;
    margin-top: 20px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 20px;
}

.privacy-policy li {
    margin-bottom: 10px;
}

/* Header Styles */
header {
    background-color: #007BFF;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-policy {
        width: 95%;
    }

    header h1 {
        font-size: 1.5em;
    }

    .privacy-policy h2 {
        font-size: 1.2em;
    }
}
