/* Template 71 - Sage Green Organic */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  --bg-primary: #f4f7f5;
  --bg-secondary: #ffffff;
  --accent-1: #7c9885;
  --accent-2: #5a7c65;
  --accent-3: #9fb8a8;
  --text-primary: #2c3e3d;
  --text-secondary: #566b67;
  --text-muted: #8a9f9a;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 152, 133, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: organicFloat 20s ease-in-out infinite;
}

@keyframes organicFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

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

.site-header {
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(124, 152, 133, 0.08);
  border-bottom: 1px solid rgba(124, 152, 133, 0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Lora", serif;
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
  transition: all 0.3s ease;
  font-style: italic;
}

.site-logo a:hover {
  color: var(--accent-1);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-1);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent-2);
}

.site-nav a:hover::before {
  width: 100%;
}

.section.head {
  padding: 8.5rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
  animation: gentleFade 1.2s ease;
  line-height: 1.25;
}

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

.section.head p {
  font-size: 1.22rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.85;
}

.section {
  padding: 5.5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-2);
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "~";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-3);
  font-size: 2rem;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  margin-top: 1.5rem;
}

.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(124, 152, 133, 0.15);
  margin-top: 6rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-about {
  flex: 1;
  max-width: 450px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.95;
  font-size: 1.05rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(124, 152, 133, 0.1);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.9s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: var(--accent-2);
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Lora", serif;
}
