/* Base Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --text-dark: #333;
    --text-light: #666;
    --text-lighter: #888;
    --bg-white: #fff;
    --bg-light: #f8f9fa;
    --bg-gray: #edf2f7;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  * {
    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-dark);
    background-color: var(--bg-light);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  ul {
    list-style-position: inside;
    padding-left: var(--space-sm);
  }
  
  li {
    margin-bottom: var(--space-xs);
  }
  
  /* Footer */
  .footer {
    background-color: var(--bg-gray);
    padding: var(--space-md) 0;
    text-align: center;
    margin-top: var(--space-xl);
    color: var(--text-light);
    font-size: 0.9rem;
  }