/* src/assets/styles.css */

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.site-header, .site-footer {
  background: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.back-link {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.content-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.guide h1 {
  margin-top: 0;
  font-size: 2.5rem;
  color: #222;
}

.guide h2 {
  margin-top: 2rem;
  color: #444;
}

.guide ul, .guide ol {
  padding-left: 1.5rem;
}

.site-footer {
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}