/*<!-- css/style.css -->*/
/* Global resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0fdf4;
  color: #065f46;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Navigation */
header {
  background-color: #a7f3d0;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #065f46;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #065f46;
  font-weight: 500;
  padding: 5px 10px;
  transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #d1fae5;
  border-radius: 5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #065f46;
}

/* Main content */
main {
  flex: 1;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #a7f3d0;
  padding: 10px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #a7f3d0;
    flex-direction: column;
    display: none;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
}