/* Privacy Policy Styles - Modular CSS */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
  text-align: center;
  padding: 30px 0;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 30px;
}

.header h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.header .company {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Intro Section Styles */
.intro {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  border-left: 4px solid #007bff;
}

.intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro h4 {
  color: #0056b3;
  margin-bottom: 10px;
}

/* Typography Styles */
h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

h3 {
  color: #495057;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  padding-left: 15px;
  border-left: 4px solid #007bff;
}

p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.7;
}

/* List Styles */
ol,
ul {
  margin: 15px 0 15px 20px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Highlight Styles */
.highlight {
  background-color: #fff3cd;
  padding: 15px;
  border-radius: 6px;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
}

/* Language Selector Styles */
.language-selector {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.language-selector button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.language-selector button:hover {
  background-color: #0056b3;
}

.language-selector button.active {
  background-color: #28a745;
}

.language-content {
  display: none;
}

.language-content.active {
  display: block;
}

/* Effective Date Styles */
.effective-date {
  background-color: #d4edda;
  padding: 15px;
  border-radius: 6px;
  border-left: 4px solid #28a745;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  color: #155724;
}

/* Tab/Indentation Styles */
.sub-item {
  margin-left: 20px;
  margin-bottom: 8px;
}

.sub-sub-item {
  margin-left: 40px;
  margin-bottom: 6px;
}

.sub-sub-sub-item {
  margin-left: 60px;
  margin-bottom: 4px;
}

/* Footer Styles */
.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #e9ecef;
  margin-top: 40px;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 10px;
    padding: 15px;
  }

  .header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .sub-item {
    margin-left: 15px;
  }

  .sub-sub-item {
    margin-left: 30px;
  }

  .sub-sub-sub-item {
    margin-left: 45px;
  }
}

/* Print Styles */
@media print {
  body {
    background-color: white;
  }

  .container {
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .header {
    border-bottom: 1px solid #000;
  }

  h2 {
    border-bottom: 1px solid #000;
  }
}
