/* Reset and Base Styles */
* {
  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: #333;
  background-color: #f5f5f5;
  padding: 20px;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

header .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Main Content */
main {
  padding: 40px 30px;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #667eea;
}

.policy-content h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #764ba2;
}

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

.policy-content ul,
.policy-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content strong {
  color: #333;
  font-weight: 600;
}

.placeholder {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

/* Footer */
footer {
  background-color: #f9f9f9;
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header {
    padding: 30px 20px;
  }

  header h1 {
    font-size: 2rem;
  }

  main {
    padding: 25px 20px;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .policy-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.6rem;
  }

  header .subtitle {
    font-size: 1rem;
  }

  .policy-content {
    font-size: 0.95rem;
  }
}
