
/* Preload font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* System font stack as fallback */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #374151;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  padding: 4rem 0;
  position: relative;
}

.bg-gradient-to-r {
  position: relative;
}

.bg-gradient-to-r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(47, 133, 90, 0.9), rgba(47, 133, 90, 0.7));
  z-index: 1;
}
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  gap: 0.5rem;
}

ul, ol {
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}
.btn-primary {
  background-color: #2F855A;
  color: white;
}

.btn-primary:hover {
  background-color: #276749;
}

.btn-secondary {
  background-color: #DD6B20;
  color: white;
}

.btn-secondary:hover {
  background-color: #C05621;
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.bg-white.p-6.rounded-lg.shadow-md:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bg-white.p-6.rounded-lg.shadow-md p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.bg-white.p-6.rounded-lg.shadow-md h3 {
  min-height: 3rem;
  display: flex;
  align-items: center;
}
.rounded-lg {
  border-radius: 0.5rem;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.text-primary {
  color: #2F855A;
}

.text-secondary {
  color: #DD6B20;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}
