 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    body {
      background: #fff;
      color: #1f2937;
    }
    header {
      position: sticky;
      top: 0;
      width: 100%;
      background: #ffffff;
      padding: 20px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.branding img {
  height: 40px;
  width: auto;
}

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #1f2937;
      font-weight: 600;
    }
    nav a.active, nav a:hover {
      color: #ff4c4c;
    }
    
    footer {
      text-align: center;
      padding: 40px 20px;
      background: #f9fafb;
      font-size: 0.9rem;
      color: #6b7280;
    }
    footer a {
      display: block;
      margin-top: 10px;
      color: #ff4c4c;
      text-decoration: none;
    }