* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4A6741;
  --primary-dark: #3a5234;
  --primary-light: #5d7d52;
  --secondary: #8B7355;
  --accent: #D4A574;
  --dark: #2C1810;
  --gray: #5a5a5a;
  --light-gray: #e8e8e0;
  --white: #ffffff;
  --forest-dark: #2d4a2b;
  --forest-light: #567d46;
  --owl-brown: #8B7355;
  --gradient: linear-gradient(135deg, #4A6741 0%, #567d46 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  color: var(--owl-brown);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, border-color 0.3s;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hero {
  background: linear-gradient(to bottom, #87CEEB 0%, #B4D7E8 50%, #567d46 100%);
  position: relative;
  padding: 0;
  min-height: 500px;
  overflow: hidden;
}

.forest-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.trees {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.tree {
  position: relative;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 140px solid var(--forest-dark);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tree::before {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -35px;
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 120px solid var(--forest-light);
}

.tree::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -15px;
  width: 30px;
  height: 40px;
  background: #5d4037;
}

.tree-1 { transform: scale(1.2) translateY(10px); }
.tree-2 { transform: scale(0.9) translateY(20px); }
.tree-3 { transform: scale(1.4) translateY(0); }
.tree-4 { transform: scale(1) translateY(15px); }
.tree-5 { transform: scale(1.1) translateY(5px); }

.owl-scene {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.owl {
  animation: owlFly 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes owlFly {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(30px);
  }
  50% {
    transform: translateY(0) translateX(0);
  }
  75% {
    transform: translateY(-10px) translateX(-30px);
  }
}

.mouse {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseRun 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes mouseRun {
  0%, 100% {
    left: 50%;
    transform: translateX(-50%) scaleX(1);
  }
  25% {
    left: 60%;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    left: 45%;
    transform: translateX(-50%) scaleX(-1);
  }
  75% {
    left: 40%;
    transform: translateX(-50%) scaleX(-1);
  }
}

.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, #3a5234 20%, #2d4a2b 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 20px 3rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.98;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.features {
  padding: 5rem 0;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 103, 65, 0.2);
  border-color: var(--primary-light);
}

.feature-card .icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

.cta {
  background: var(--gradient);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.page-header {
  background: var(--gradient);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mini-forest {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.tree-bg {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 180px solid var(--white);
}

.tree-bg-1 { left: 10%; transform: scale(1.2); }
.tree-bg-2 { left: 50%; transform: translateX(-50%) scale(1.5); }
.tree-bg-3 { right: 10%; transform: scale(1); }

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.125rem;
  opacity: 0.95;
}

.content {
  padding: 4rem 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-block h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.values-list {
  list-style: none;
}

.values-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.values-list span {
  color: var(--gray);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(74, 103, 65, 0.08) 0%, rgba(139, 115, 85, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
  margin-top: 3rem;
}

.contact-box h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-box p {
  color: var(--gray);
  line-height: 1.8;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  opacity: 0.85;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .trees {
    height: 50%;
  }

  .tree {
    border-left-width: 25px;
    border-right-width: 25px;
    border-bottom-width: 90px;
  }

  .tree::before {
    border-left-width: 22px;
    border-right-width: 22px;
    border-bottom-width: 75px;
    left: -22px;
    bottom: -90px;
  }

  .tree::after {
    width: 20px;
    height: 30px;
    left: -10px;
    bottom: -120px;
  }

  .owl {
    width: 80px;
    height: 70px;
  }

  .mouse {
    width: 30px;
    height: 22px;
    top: 280px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .content-block h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .owl-scene {
    top: 20%;
  }

  .mouse {
    top: 260px;
  }

  .hero-content {
    padding: 4rem 20px 2rem;
  }
}