/* Basic styling for layout and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
  }
  
  header, nav, footer {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1, h2, h3 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    background: #f5f5f5;
  }
  
  .button {
    background: #d9272e;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .button:hover {
    background: #a32023;
  }