/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #003D39;
    line-height: 1.6;
    font-size: 18px;
    padding: 0;
    margin: 0;
  }

  p {
    margin-bottom: 10px;
  }
  
  /* Headings */
  h1, h2, h3, h4 {
    letter-spacing: -0.5px;
    margin-bottom: 0.25em;
    margin-top: 0.25em;
  }
  
  /* Links */
  a {
    color: #006d66; /* dark aquamarine */
    text-decoration: none;
    font-weight: bold;
  }

  header h1 {
    font-family: "Gasoek One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
  }


  header h1 a {
    font-weight: 400;
  }

  header h1 a:hover {
    text-decoration: none;
  }
  
  a:hover {
    color: #009688; /* lighter aquamarine highlight */
    text-decoration: underline;
  }
  
  /* Layout container */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  /* Nav */
  nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 3rem;
  }
  
  nav a {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  nav a.active {
    text-decoration: underline; 
  }

  nav a:hover {
    color: #B17400;
    text-decoration: none;
  }
  
  /* Footer */
  footer {
    margin-top: 2rem;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #333;
  }
  
  /* Forms */
  form {
    display: grid;
    gap: 1rem;
  }
  
  input, textarea {
    padding: 0.75rem;
    border: 2px solid #000;
    background: #fff;
    font-size: 1rem;
    width: 100%;
    font-family: inherit;
  }
  
  button {
    background: #006d66;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  button:hover {
    background: #009688;
  }
  