:root {
	--clark-green: #2D4F36;
	--clark-blue: #3E5C76;
	--clark-cedar: #A65D28;
	--bg-cream: #FDFCF9;
	--text-dark: #1A1A1A;
	--white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: 'Source Sans Pro', sans-serif;
	background-color: var(--bg-cream);
	color: var(--text-dark);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
}

a {
	text-decoration: none;
}
a:hover {
	color: lightgray;
}

main {
	width: 100%;
	max-width: 1100px;
	margin: 6rem auto 4rem auto;
}

main section, article {
	margin-top: 1rem;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

article header {
	border: 2px solid #004d40;
    border-left: 4px solid #004d40; /* A deep mountain green */
    padding-left: 1rem;
    margin-bottom: 2rem;
}

article div {
	margin: 0 2rem;
}

main img {
	width: 90%;
}

.site-footer {
	width: 100%;
  background-color: #004d40;
  color: #f9f9f9;
  padding: 40px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 60px;
  border-top: 4px solid #00332c;
}

.footer-container {
//  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  color: #a5d6a7; /* Lighter green for headings */
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.footer-column p, .footer-column address {
  font-size: 14px;
  line-height: 1.6;
  font-style: normal;
}

.footer-column a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #a5d6a7;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

