* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.privacy-policy-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 12px; /* Match the font size */
}

h1, h2 {
    color: #333;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px; /* Match the font size */
    margin-bottom: 20px; /* Add margin bottom to match the spacing */
}

h2 {
    font-size: 18px; /* Match the font size */
    margin-top: 20px;
    margin-bottom: 10px; /* Add margin bottom to match the spacing */
}

p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

ul {
    margin: 10px 0;
    padding: 0 20px;
    list-style-type: disc;
}

li {
    margin: 5px 0;
    color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    .privacy-policy-container {
        padding: 10px;
        margin: 10px;
        font-size: 8px; /* Adjust font size for smaller screens */
    }

    h1 {
        font-size: 20px; /* Adjust font size for smaller screens */
    }

    h2 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}
