/* Privacy Policy Section */
.privacy-policy {
    width: 80%;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Main Title */
.privacy-policy h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #222;
}

/* Section Headings */
.privacy-policy h3 {
    margin-top: 25px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    border-left: 4px solid #0073e6;
    padding-left: 10px;
}

/* Paragraphs */
.privacy-policy p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

/* Bold Labels */
.privacy-policy strong {
    color: #000;
}

/* Lists */
.privacy-policy ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.privacy-policy ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* Footer note */
.privacy-policy .note {
    text-align: center;
    font-style: italic;
    margin-top: 25px;
    color: #555;
}