/* Legal Pages Shared Styles */
:root {
    --primary-color: #222222;
    --secondary-color: #666666;
    --background-gradient: linear-gradient(180deg, #ffd1c1 0%, #ffb7a3 5%, #ff9e7d 15%, #f7b7a3 25%, #f7b7a3 35%, #f7c7b3 50%, #ffe5d0 65%, #ffede0 75%, #ffd1c1 100%);
    --content-bg: #fff8f3;
    --content-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.07);
    --border-radius: 32px;
    --heading-font: 'DM Serif Display', serif;
    --body-font: 'Poppins', sans-serif;
  }
  
  /* Base Styles */
  html, body {
    height: 100dvh;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    color: var(--primary-color);
    background: var(--background-gradient);
    overflow: hidden;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  /* Container Styles */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  
  /* Content Card Styles */
  .content-card {
    background: var(--content-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--content-shadow);
    padding: 32px;
    margin: 20px;
    height: calc(100dvh - 40px);
    overflow-y: auto;
  }
  
  /* Typography Styles */
  h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
  }
  
  h3 {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  /* List Styles */
  ul, ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }
  
  li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--secondary-color);
  }
  
  /* Link Styles */
  a {
    color: #ff7566;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  a:hover {
    color: #ff5c4a;
  }
  
  /* Last Updated Styles */
  .last-updated {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    text-align: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    .content-card {
      padding: 20px;
      margin: 10px;
      height: calc(100dvh - 20px);
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .container {
      padding: 0;
    }
  } 