body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.privacy-policy {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 1.3em;
    color: #555;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.privacy-policy p,
.privacy-policy ul {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc;
    /* margin-left: 10px; */
}

.privacy-policy a {
    color: #1a73e8;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .privacy-policy {
        padding: 10px;
    }

    .privacy-policy h1 {
        font-size: 1.8em;
    }

    .privacy-policy h2 {
        font-size: 1.4em;
    }
}