/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #8ca77e;
  color: #365047;
}

h1 {
  color: #333;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #333;
  color: #b8cfc7;
  padding: 60px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  text-align: center;
}

#logo {
  height: 100px;
  width: auto;
}

.header-text h1 {
  margin: 0;
}

.header-text p {
  margin: 0;
  font-size: 1rem;
}

/* Navigation Styles */
nav {
  background-color: #61827d;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #bbccca;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  background-color: #c0cfb9;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 0;
}

.hero h1 {
  font-size: 40px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #ebbf0e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
}

.button:hover {
  background-color: #f5d861;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #ae6327;
  color: white;
  margin-top: 0px;
}

/* Responsive */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  #logo {
    height: 90px;
  }

  .hero h1 {
    font-size: 32px;
  }
}
