:root {
  --sage: #A3B18A;
  --sage-light: #C5D5B5;
  --deep-green: #588157;
  --forest: #3A5A40;
  --light: #F8F5F0;
  --white: #ffffff;
  --cream: #FEFAE0;
  --brown: #5B4E41;
  --accent: #E9C46A;
}

body {
  background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
  color: var(--brown);
  line-height: 1.8;
  min-height: 100vh;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(163, 177, 138, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--deep-green);
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem 0;
}

.logo {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo:hover {
  color: var(--accent);
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  padding: 1rem 2rem 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav a:hover::after {
  width: 80%;
}

/* Hero Section */
.hero {
  height: 75vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 129, 87, 0.7) 0%, rgba(58, 90, 64, 0.8) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(233, 196, 106, 0.2) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 400;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  font-family: "Inter", sans-serif;
}

/* Cards */
.card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(163, 177, 138, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--deep-green) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  color: var(--deep-green);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card p {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.7;
}

.card a {
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card a:hover {
  color: var(--sage);
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

.section h2 {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--brown);
  text-align: justify;
}

.section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.section li {
  margin-bottom: 0.8rem;
  color: var(--brown);
  font-size: 1.05rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest) 100%);
  color: white;
  margin-top: 6rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }

  .header-container {
    padding: 0.8rem 1rem 0;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  .nav {
    gap: 1rem;
    padding: 0.8rem 1rem 1rem;
  }

  .nav a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .card {
    padding: 1.8rem;
  }
}
