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

body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: #f6fff8;
  color: #1f2937;
  line-height: 1.6;
}

/* GLOBAL */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #166534;
  position: relative;
  font-family: 'Lucida Sans Unicode', serif;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #22c55e;
  display: block;
  margin: 15px auto 0;
  border-radius: 20px;
}

/* HEADER */

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 55px;
  width: auto;
}

.logo h1 {
  font-family: 'Lucida Sans Unicode', serif;
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  letter-spacing: 0.5px;
}

.logo span {
  color: #166534;
  font-size: 24px;
  font-family:  'Lucida Sans Unicode';
  font-weight: 700;
}

/* NAVIGATION */

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #166534;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #22c55e;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #22c55e;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: #166534;
  font-size: 30px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 92vh;

  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(255,255,255,0.08);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  max-width: 900px;
}

.welcome-text {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 18px;
  color: #dcfce7;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 68px;
  margin-bottom: 25px;
  line-height: 1.15;
  font-weight: 800;
  font-family: 'Lucida Sans Unicode', serif;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
  color: #f0fdf4;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(34,197,94,0.35);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(34,197,94,0.45);
}

/* ABOUT */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-content h3 {
  color: #166534;
  margin-bottom: 20px;
  font-size: 30px;
  font-family: 'Lucida Sans Unicode', serif;
}

/* TEAM CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.35s;
  border: 1px solid #dcfce7;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(22,101,52,0.18);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
  color: #166534;
  font-size: 24px;
  font-family: 'Lucida Sans Unicode', serif;
}

.card p {
  color: #4b5563;
}

/* TABLE */

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

th,
td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background: linear-gradient(135deg, #166534, #22c55e);
  color: white;
  font-size: 18px;
}

tr:hover {
  background: #f0fdf4;
}

/* CONTACT LINKS */

.contact a {
  color: #15803d;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* FOOTER */

footer {
  background: #14532d;
  color: white;
  text-align: center;
  padding: 35px;
  margin-top: 50px;
}

/* TABLET */

@media (max-width: 992px) {

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .logo h1 {
    font-size: 24px;
  }
}

/* MOBILE */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background: white;

    flex-direction: column;
    text-align: center;

    padding: 25px 0;

    display: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

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

  .welcome-text {
    font-size: 18px;
  }

  .hero-content {
    padding: 35px 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 34px;
  }

  .logo h1 {
    font-size: 20px;
  }
}