/* Container for the Privacy Policy content */
.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 20px 0 10px;
}

/* Paragraph styles */
p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Unordered list styles */
ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 15px;
}

ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Strong text (used for important terms) */
strong {
    font-weight: bold;
    color: #333;
}

/* Links styling */
a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Contact information styling */
ul li {
    margin-bottom: 8px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    p, ul li {
        font-size: 14px;
    }
}