* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f7f7f7;
  color: #333;
}

/* HEADER */
.site-header {
  background: #8b0000;
  padding: 12px;
  color: #fff;
}

.logo a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.top-nav {
  margin-top: 8px;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 10px;
}

/* CONTENT */
.content {
  padding: 15px;
}

h1 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.08);
}

.card h2 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 15px;
  text-align: center;
}

.footer-links a {
  color: #ccc;
  margin: 0 6px;
  font-size: 13px;
  text-decoration: none;
}

.footer-contact p {
  font-size: 13px;
  margin: 5px 0;
}

.footer-copy {
  font-size: 12px;
  margin-top: 10px;
}

/* DESKTOP ENHANCEMENT */
@media (min-width: 768px) {
  .top-nav a {
    font-size: 15px;
  }
  .content {
    max-width: 900px;
    margin: auto;
  }
}
