/* Policy Page Styles */

.policy-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: #f8f9fa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--primary-color);
  font-weight: 600;
}

.breadcrumb i {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.policy-content {
  background: white;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--light-color);
}

.policy-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.update-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.policy-section {
  margin-bottom: 35px;
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.policy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 20px 0 10px;
}

.policy-section p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
  margin: 15px 0;
  padding-left: 25px;
}

.policy-section li {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
}

.policy-section ul li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.policy-section ol {
  list-style: decimal;
}

.policy-section ol li {
  padding-left: 5px;
}

.policy-section ol li::before {
  content: none;
}

.policy-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-section a:hover {
  color: var(--primary-dark);
}

.policy-section strong {
  color: var(--dark-color);
}

.info-box {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF5FA 100%);
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.info-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box i {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.policy-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--light-color);
  text-align: center;
}

.policy-footer p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.policy-footer strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Table in Policy */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.policy-table th,
.policy-table td {
  padding: 12px 15px;
  border: 1px solid var(--light-color);
  text-align: left;
}

.policy-table th {
  background: var(--light-color);
  font-weight: 700;
  color: var(--dark-color);
}

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

/* Responsive */
@media (max-width: 768px) {
  .policy-content {
    padding: 30px 20px;
  }

  .policy-header h1 {
    font-size: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.1rem;
  }
}
