/*
Theme Name: Monko
Author: Monko
Author URI: https://monko.studio/
Version: 1.0.1
*/
.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.policy-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #0073aa;
}

.policy-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0073aa;
}

.policy-subtitle {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.policy-section {
  margin: 30px 0;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0073aa;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.subsection-title {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px 0;
  color: #333;
}

.policy-text {
  margin: 10px 0;
  text-align: justify;
}

.policy-list {
  margin: 10px 0 10px 20px;
}

.policy-list li {
  margin: 5px 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: white;
}

.policy-table th,
.policy-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.policy-table th {
  background-color: #0073aa;
  color: white;
  font-weight: bold;
}

.policy-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.policy-table tr:hover {
  background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .policy-container {
    padding: 10px;
  }
  
  .policy-title {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .policy-table th,
  .policy-table td {
    padding: 8px;
    font-size: 14px;
  }
}