:root {
  --color-primary-dark-green: #133e29;
  --color-primary-green: #3e5030;
  --color-primary-deep-green: #485113;
  --color-accent-olive: #a9a550;
  --color-accent-light-green: #c1cf97;
  --color-accent-bright-green: #bbd862;
  --color-accent-lime-green: #cbe286;
  --color-text-light: #ffffff;
  --color-text-dark: #3e5030;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Jost', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-alt: 'Inder', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--color-text-dark);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.content-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
    flex: 1 1 240px;
}

.feature-card img {
    height: 48px;
    width: auto;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
  .content-pane {
    padding: 3rem;
  }
  .section-grid .image-pane {
    order: -1; /* Move image to top on mobile for alternating layouts */
  }
}

@media (max-width: 768px) {
    .content-pane {
        padding: 2rem 1.5rem;
    }
}