/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f9f9;
    color: #333;
  }
  
  /* Header */
  header {
    background: #1a4d2e;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: center;
    background: #0b2e13;
  }
  
  nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
  }
  
  nav a:hover {
    background: #14532d;
  }
  
  /* Sections */
  section {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  h2 {
    color: #1a4d2e;
  }
  
  /* Buttons */
  button {
    background: #1a4d2e;
    border: none;
    color: white;
    padding: 12px 24px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 6px;
  }
  
  button:hover {
    background: #14532d;
  }
  
  /* Quotes */
  .quote {
    font-style: italic;
    margin-top: 10px;
    color: #555;
  }
  
  /* Footer */
  footer {
    background: #0b2e13;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
  }
  
  