
:root {
  --primary: #97c1b3;
  --primary-hover: #7ab4c0;
  --secondary: #f8f5ee;
  --accent: #98c2b4;
  --gold: #c3a66d;
  --text: #0b0e0f;
  --text-light: #5ca5aa;
  --border: #98c2b4;
  --shadow: 0 1px 3px rgba(151, 193, 179, 0.1);
  --shadow-md: 0 4px 6px rgba(151, 193, 179, 0.05);
  --rounded: 12px;
  --rounded-full: 9999px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

.text-lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-full);
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}

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

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

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

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

.card {
  background: white;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chip {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--rounded-full);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  z-index: 50;
}

/* Hero section */
.hero {
  padding: 6rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .hero {
    padding: 3rem 0;
  }
}
