/* Privacy Policy Styling */
 p {
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
.privacy_span {
    font-weight: bold;
    color: #2c3e50;
}

.comp {
    font-weight: bold;
    color: var(--primary-color);
}

.privacy_list {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    counter-reset: item;
}

.privacy_list h2 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 0.3em;
}

.privacy_list p {
    margin-bottom: 1em;
}

.bullet {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.bullet li {
    margin-bottom: 0.5em;
}


/* Numbered list styling */
.privacy_list > li {
    counter-increment: item;
    margin-bottom: 2em;
}

.privacy_list > li:before {
    font-weight: bold;
    color: #3498db;
    margin-right: 0.5em;
    font-size: 1.2em;
}

/* Link styling */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .privacy_list {
        padding: 15px;
    }
    
    .privacy_list h2 {
        font-size: 1.2em;
    }
}

.privacy_intro {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
  margin: 0 0 20px 0;
  padding: 0 35em;
 
}
.privacy_intro p {
    text-align: left !important;
}