* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'georgian', serif;
  line-height: 1.6;
   background-color: #E9F5DC;
  color: #333;
}

.container {
  width: 90%;
  max-width: 970px;
  margin: 0 auto;
  padding: 2rem 0;
}

header {
  background-color: #003366;
  font-size: 20pt;
  color: white;
  padding: 1rem 0;
}

header h1 {
  margin: 0 0 0;
  letter-spacing: 3px;
  font-family: 'Arial', sans-serif;
  font-size: 36pt;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  font-size: 18pt;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

#hero {
  background-color: #E9F5DC;
  text-align: center;
  padding: 2rem 2rem;
}

#hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

section h3 {
 background-color: #E9F5DC;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.services-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  background-color: #003366;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #005599;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.side-box {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 120px;
  background-color: #e0e0e0;
  z-index: 0; /* stays behind content */
}

.side-box.left {
	background-image:url(trees2.jpg);
  left: 0;
}

.side-box.right {
	background-image:url(trees2.jpg);
  right: 0;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

.about-content figure {
  margin: 0;
  max-width: 300px;
}

.about-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.about-content figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.header-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-image {
  height: 160px;
  border-radius: 6px;
}

.center-content {
  text-align: center;
  flex: 1;
}

.center-content h1 {
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding-left: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}