/* styles.css */

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  text-align: center;
  margin-bottom: 20px;
}
.logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}

/* Hero */
.hero img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Sections */
main h2 {
  font-size: 2rem;
  margin: 20px 0 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
.about p {
  margin-bottom: 15px;
}
.contact p,
.resources ul {
  margin-bottom: 10px;
}
.resources ul {
  list-style: disc;
  margin-left: 20px;
}
.resources a {
  text-decoration: none;
  color: #0066cc;
}
.resources a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}