/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Container */
.privacy-container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
}

/* Header */
.header {
    text-align: left;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

/* Last Updated */
.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Section Headings */
h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraphs */
p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* List Styling */
ul {
    margin-left: 20px;
}

ul li {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        width: 95%;
        padding: 20px;
    }

    .header h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    p, ul li {
        font-size: 16px;
    }
}
