/* Privacy Policy Page Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #6b9080 0%, #a4c3b2 100%);
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 40px;
}

/* Back Link */
.back-link {
  display: inline-block;
  color: #6b9080;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.back-link:hover {
  color: #5a7d6d;
  text-decoration: underline;
}

/* Typography */
h1 {
  color: #333;
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-bottom: 25px;
}

.intro {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

h2 {
  color: #333;
  font-size: 18px;
  margin-bottom: 12px;
}

h3 {
  color: #555;
  font-size: 15px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* Policy Sections */
.policy-section {
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.policy-section p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 8px 0 10px 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.policy-section ul li {
  margin-bottom: 6px;
}

.policy-section ul li:last-child {
  margin-bottom: 0;
}

/* Code inline */
code {
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: #495057;
}

/* Links */
.policy-section a {
  color: #6b9080;
  text-decoration: underline;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: #5a7d6d;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 13px;
}

thead th {
  background: #e9ecef;
  color: #333;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #dee2e6;
}

tbody td {
  padding: 10px 12px;
  border: 1px solid #dee2e6;
  color: #555;
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background: #f0f2f4;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 20px 15px;
  }

  .container {
    padding: 25px 20px;
  }

  h1 {
    font-size: 24px;
  }

  table {
    font-size: 12px;
  }

  thead th,
  tbody td {
    padding: 8px;
  }
}
