/* Pixsjoy Legal Pages Styles */

:root {
  --primary-color: #FF6B6B;
  --text-color: #333;
  --bg-color: #ffffff;
  --border-color: #e0e0e0;
  --link-color: #0066cc;
}

* {
  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: var(--text-color);
  background-color: var(--bg-color);
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

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

.logo {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 30px;
  margin-bottom: 15px;
  padding-top: 10px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul, ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.last-updated {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 30px;
}

.highlight {
  background-color: #fff3cd;
  padding: 15px;
  border-left: 4px solid var(--primary-color);
  margin: 20px 0;
  border-radius: 4px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}

footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 14px;
  color: #666;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #ff5252;
  text-decoration: none;
}

@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}

