/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: #01A200;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.hero {
  background: #111 url('background.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-buttons a,
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #01A200;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin: 0.25rem;
  transition: background 0.3s ease;
}

.button:hover,
.cta-buttons a:hover {
  background: #028a00;
}

.about,
.divisions,
.news-teaser {
  padding: 4rem 1.5rem;
  text-align: center;
}

.division-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.card {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 a {
  text-decoration: none;
  color: #01A200;
}

.card h3 a:hover {
  text-decoration: underline;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1.5rem 2rem;
}

footer a {
  color: #01A200;
  text-decoration: none;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #01A200;
    width: 220px;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin-bottom: 1rem;
  }

  nav ul li:last-child {
    margin-bottom: 0;
  }
}

.policy-section ul {
  list-style: none;
  padding: 0;
}

.policy-section li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

.policy-section a {
  color: #01A200;
  text-decoration: none;
  font-weight: 500;
}

.policy-section a:hover {
  text-decoration: underline;
}
