/* Privacy Policy Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Force light theme */
html {
  color-scheme: light !important;
  background-color: #f5f5f5 !important;
  color: #333 !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333 !important;
  background-color: #f5f5f5 !important;
  padding: 20px;
}

/* Override all text elements to ensure visibility */
* {
  color: #333 !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a !important;
}

p, span, div, li, td, th {
  color: #333 !important;
}

/* Container */
.container, .privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white !important;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #1a1a1a !important;
  text-align: center;
  font-weight: 700;
}

h2 {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2c3e50 !important;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

h3 {
  font-size: 1.4em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #34495e !important;
  font-weight: 600;
}

h4 {
  font-size: 1.2em;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #34495e !important;
  font-weight: 500;
}

p {
  margin-bottom: 15px;
  text-align: justify;
  color: #555 !important;
}

/* Lists */
ul, ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  color: #555 !important;
}

li strong, strong {
  color: #333 !important;
  font-weight: 600 !important;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.email-link {
  font-weight: 500;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  font-size: 0.9em;
}

tr:hover {
  background-color: #f8f9fa;
}

/* Special Sections */
.last-updated, .effective-date {
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 30px;
}

.contact-section, .contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
}

.contact-section h3 {
  margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .container, .privacy-container {
    padding: 20px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.5em;
  }
  
  h3 {
    font-size: 1.2em;
  }
  
  table {
    font-size: 0.9em;
  }
  
  th, td {
    padding: 8px 10px;
  }
}

/* Dark Mode Disabled - Force light theme only */

/* Print Styles */
@media print {
  body {
    background-color: white;
    color: black;
  }
  
  .container, .privacy-container {
    box-shadow: none;
    padding: 0;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}