@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Poppins:wght@400;600&display=swap');

:root {
  --primary-green: #27ae60;
  --primary-brown: #8d6748;
  --primary-orange: #ff9800;
  --bg-light: #f9f9f9;
  --bg-white: #fff;
  --text-dark: #222;
  --text-light: #666;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(39, 174, 96, 0.08);
  --transition: 0.3s cubic-bezier(.25,.8,.25,1);
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* NAVIGATION */
nav.modern-nav {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav.modern-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.modern-nav .logo {
  height: 48px;
}
nav.modern-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav.modern-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition);
}
nav.modern-nav a:hover {
  color: var(--primary-orange);
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0 2rem 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}
.hero-content {
  flex: 1 1 350px;
  padding-right: 2rem;
}
.hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}
.hero-img {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img, .hero-img lottie-player {
  max-width: 340px;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(39, 174, 96, 0.12);
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.12);
  transform: translateY(-6px) scale(1.02);
}
.card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.7rem;
}
.card .card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.10);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
}

/* SECTION TITLES */
.section-title {
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-subtitle {
  color: var(--primary-brown);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* TEAM CARDS */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(39, 174, 96, 0.10);
}
.team-card .card-title {
  margin-bottom: 0.3rem;
}
.team-card .card-role {
  color: var(--primary-orange);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

/* FOOTER */
footer.modern-footer {
  background: var(--bg-white);
  border-top: 1px solid #eee;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 3rem;
  color: var(--text-light);
  text-align: center;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 2.5rem 0 1.5rem 0;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .logo {
    max-width: 120px;
    min-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .card {
    padding: 1.2rem 0.7rem;
  }
} 