* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f9f4;
  color: #333;
}

/* HERO */
.hero {
  background: url("https://images.unsplash.com/photo-1509395062183-67c5ad6faff9") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background: #27ae60;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* NAV */
nav {
  background: #1e8449;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

/* SECTIONS */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #1e8449;
  margin-bottom: 15px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.card {
  background: #e9f7ef;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea, button {
  padding: 10px;
  font-size: 16px;
}

button {
  background: #27ae60;
  color: white;
  border: none;
  cursor: pointer;
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 2s ease;
}

.slide-in {
  animation: slideIn 2s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

footer {
  background: #145a32;
  color: white;
  text-align: center;
  padding: 15px;
}
/* TEAM IMAGES */
.card img {
  width: 100%;
  border-radius: 50%;
  max-width: 120px;
  margin-bottom: 10px;
}

/* HAMBURGER */
.menu-toggle {
  display:flex;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: none;
    margin: 10px 0;
  }

  nav.active a {
    display: block;
  }

  .menu-toggle {
    display: block;
    margin: 5px;
  }
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.site-logo {
  width: 40px;
  height: 40px;
}

.site-name {
  font-weight: bold;
  color: white;
  font-size: 18px;
}
