:root {
  --primary: #2C5530;
  --primary-dark: #1E3A21;
  --secondary: #8A9A5B;
  --accent: #3E4C3E;
  --accent-hover: #2A332A;
  --bg-primary: #F5F5DC;
  --bg-secondary: #EFEFDA;
  --bg-card: #fff;
  --text-primary: #2C5530;
  --text-secondary: #555;
  --border-color: #D4D4C9;
  --neutral: #D4D4C9;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 44px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 36px;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 28px;
  margin-bottom: 1rem;
}

h4 {
  font-size: 22px;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 20px;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 18px;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

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

.container-fluid {
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

.col-2 { flex: 0 0 calc(16.666% - 30px); }
.col-3 { flex: 0 0 calc(25% - 30px); }
.col-4 { flex: 0 0 calc(33.333% - 30px); }
.col-6 { flex: 0 0 calc(50% - 30px); }
.col-8 { flex: 0 0 calc(66.666% - 30px); }
.col-9 { flex: 0 0 calc(75% - 30px); }
.col-12 { flex: 0 0 calc(100% - 30px); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 40px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  
  p { font-size: 16px; }
  
  .container { padding: 0 15px; }
  
  .col, .col-2, .col-3, .col-4, .col-6, .col-8, .col-9, .col-12 {
    flex: 0 0 calc(100% - 30px);
    margin-bottom: 20px;
  }
  
  .row { margin: 0 -10px; }
  .col { padding: 0 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html { scroll-behavior: auto; }
}