/* /public/styles/terms-privacy.css */

/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }
  
  /* Container */
  #content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Headers */
  h1 {
    color: #2c3e50;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    color: #34495e;
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  
  p,
  ul {
    margin-bottom: 1rem;
  }
  
  /* Lists */
  ul {
    list-style: disc;
    padding-left: 1.5rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Links */
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #7f8c8d;
    text-align: center;
  }