:root {
  --primary-green: #1c3f39;
  --secondary-green: #26534c;
  --accent-gold: #f2ac0d;
  --text-grey: #556561;
  --text-light: #b7cbc7;
  --bg-beige: #e9e6d7;
  --white: #ffffff;
  --border-color: #ccd3d2;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--white);
  color: var(--text-grey);
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

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

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

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  border: none;
  background-color: var(--accent-gold);
  color: var(--primary-green);
}

.btn-outline {
  border: 1px solid var(--text-grey);
  color: var(--primary-green);
  background: transparent;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Utility for relative positioning */
.relative {
  position: relative;
}

