:root {
  --primary: #1f3d38;
  --secondary: #55ad9e;
  --white: #ffffff;
  --black: #111111;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
}

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

section {
  padding: 100px 0;
}

/* Header */
.site-header {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), #18312d);
  color: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.highlight {
  color: var(--secondary);
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border-radius: 16px;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Cards */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* Why section */
.why {
  background: var(--primary);
  color: var(--white);
}

.why ul {
  list-style: none;
  padding: 0;
}

.why li {
  margin: 15px 0;
}

/* CTA */
.cta {
  text-align: center;
  background: #f6f8f7;
}

.location {
  background: #f6f8f7;
}

.location-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.location-info h2 {
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-details li {
  margin-bottom: 10px;
}

.faq {
  background: #f6f8f7;
}

.faq h2 {
  text-align: center;
  margin-bottom: 60px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.content-area {
  padding: 100px 0;
}

.posts-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 60px;
}

.post-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
}

.post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 30px;
}

.post-content h2 a {
  color: var(--primary);
  text-decoration: none;
}

.post-meta {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 15px;
}

.pagination {
  margin-top: 60px;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}