/* CSS Reset and Variables */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #006647;
  --primary-dark: #004d35;
  --accent: #C9A84C;
  --accent-hover: #b8973e;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F4F4;
  --bg-card: #fff;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --border-color: #e0e0e0;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 102, 71, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 102, 71, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 102, 71, 0.16);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  overflow: hidden;
}

.section-small {
  padding: 60px 0;
}

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

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-small {
    padding: 40px 0;
  }
}