body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background: #fff;
    color: #333;
  }
  
  nav {
    display: flex;
    gap: 20px;
    padding: 8px 15px;
    background: #fff;
    justify-content: flex-start;
    border-bottom: 1px solid #ddd;
    align-items: center;
  }
  
  nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .hero {
    margin-top: 80px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .dark {
    color: #222;
  }
  
  .green {
    color: #0c8843;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: #666;
  }
  
  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0c8843;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .btn:hover {
    background: #0c8843;
  }  

.logo {
    height: 32px;
    vertical-align: middle;
    margin-right: 20px;
  }

  /* Privacy Policy Page Styles */
  .privacy-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
    line-height: 1.6;
  }

  .privacy-content h1 {
    color: #0c8843;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
  }

  .privacy-content h2 {
    color: #222;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #0c8843;
    padding-bottom: 8px;
  }

  .privacy-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .privacy-content p {
    margin-bottom: 15px;
    color: #444;
  }

  .privacy-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style-type: none;
  }

  .privacy-content li {
    margin-bottom: 8px;
    color: #444;
  }

  .privacy-content a {
    color: #0c8843;
    text-decoration: none;
  }

  .privacy-content a:hover {
    text-decoration: underline;
  }

  .privacy-content section {
    margin-bottom: 30px;
  }

  .key-takeaway {
    background: #f8f9fa;
    border-left: 4px solid #0c8843;
    padding: 20px;
    margin: 40px 0;
    border-radius: 4px;
  }

  .key-takeaway p {
    margin: 0;
    font-size: 1.1rem;
  }
  