/* Worm Burner Legal Site Styles */

:root {
    --primary-green: #2E7D32;
    --dark-green: #1B5E20;
    --light-green: #4CAF50;
    --accent-gold: #FFC107;
    --text-dark: #212121;
    --text-light: #757575;
    --background: #FAFAFA;
    --white: #FFFFFF;
    --border: #E0E0E0;
  }
  
  * {
    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(--background);
  }
  
  /* Header */
  header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  header .subtitle {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* Navigation */
  nav {
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  nav a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  nav a:hover {
    color: var(--dark-green);
    text-decoration: underline;
  }
  
  /* Container */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  /* Legal Document Styles */
  .legal-document {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
  }
  
  .legal-document h1 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .legal-document h2 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
  }
  
  .legal-document h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .legal-document p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .legal-document ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
  }
  
  .company-info {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-green);
  }
  
  .company-info h3 {
    margin-top: 0;
  }
  
  .highlight {
    background: #FFF9C4;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    margin: 1.5rem 0;
  }
  
  /* Landing Page Styles */
  .hero {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: var(--dark-green);
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
  }
  
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .feature h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
  }
  
  /* Support Page */
  .support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
  }
  
  .support-card h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 6px;
    margin: 1rem 0;
  }
  
  .contact-icon {
    font-size: 2rem;
  }
  
  .contact-details a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
  }
  
  footer p {
    margin-bottom: 0.5rem;
  }
  
  footer a {
    color: var(--white);
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    header h1 {
      font-size: 1.5rem;
    }
    
    nav ul {
      gap: 1rem;
    }
    
    .legal-document {
      padding: 1.5rem;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .features {
      grid-template-columns: 1fr;
    }
  }