
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2E8B57;
  --secondary: #87CEEB;
  --accent: #1E3A8A;
  --light-gray: #f3f4f6;
  --medium-gray: #e5e7eb;
  --dark-gray: #374151;
}

body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  color: #374151;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #ffffff;
}

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

/* Section styling */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title .divider {
  width: 6rem;
  height: 0.25rem;
  background: var(--secondary);
  margin: 0 auto 1.5rem;
}

.section-title p {
  max-width: 48rem;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.125rem;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

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

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #6bb4d4;
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: #172554;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.875rem;
  }
}
