/* Policy Pages Styles */
.policy-page {
  min-height: 80vh;
  padding: 120px 20px 80px;
  background: #f9fafb;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e5e7eb;
}

.policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.policy-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.policy-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-content a {
  color: #6366f1;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #4f46e5;
}

.policy-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}

.policy-empty p {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.no-cookies-notice {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.no-cookies-notice strong {
  color: #1e40af;
  display: block;
  margin-bottom: 10px;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .policy-container {
    padding: 40px 1.5rem;
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .policy-page {
    padding: 100px 1rem 60px;
  }
  
  .policy-container {
    padding: 30px 1rem;
  }
  
  .policy-content ul,
  .policy-content ol {
    padding-left: 20px;
  }
}

