:root {
  --primary: #5a7247;
  --secondary: #d4b483;
  --background: #f0f2e9;
  --footer-bg: #3a4a2f;
  --button: #d4b483;
  --section-bg-1: #e8ede1;
  --section-bg-2: #d9e0d1;
  --section-bg-3: #c9d3c1;
  --text-primary: #2c3e22;
  --text-secondary: #5a7247;
  --text-light: #f0f2e9;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5em;
  font-size: 1.1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.btn {
  display: inline-block;
  padding: 0.8em 1.8em;
  background-color: var(--button);
  color: var(--text-primary);
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--primary);
  color: var(--text-light);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.nature-decoration {
  position: relative;
}

.nature-decoration::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%235a7247" d="M50 0 Q75 25 50 50 Q25 75 0 50 Q25 25 50 0 Z"/></svg>');
  opacity: 0.1;
  z-index: -1;
}

footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  padding: 3rem 0;
}

footer a {
  color: var(--text-light);
}

footer a:hover {
  color: var(--secondary);
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.6em 1.4em;
  }
}