/* privacy-style.css */

body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.last-updated {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}
/* Optional: Collapsible Sections (Requires JavaScript) */
.collapsible {
    cursor: pointer;
}

.collapsible-content {
    display: none; /* Initially hidden */
    overflow: hidden;
    padding: 0 18px;
}

.collapsible:after {
    content: '+'; /* Or a down arrow icon */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "-"; /* Or an up arrow icon */
}