:root {
  --sage-green: #87a878;
  --sage-dark: #6b8a5e;
  --sage-light: #a4c296;
  --bg-light: #f8f9fa;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--sage-dark);
}

.navbar-brand strong {
  color: var(--sage-dark);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--sage-green);
}

.navbar-light .navbar-nav .active .nav-link {
  color: var(--sage-green);
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text-muted);
}

.btn-sage {
  background-color: var(--sage-green);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-sage:hover {
  background-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 168, 120, 0.3);
}

.content-section {
  padding: 4rem 0;
}

.section-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-radius: 0.75rem 0.75rem 0 0;
  height: 200px;
  object-fit: cover;
}

.limitations-box {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--sage-green);
  margin: 2rem 0;
}

.limitations-box h2 {
  color: var(--text-dark);
}

.limitations-box p {
  margin-bottom: 1rem;
}

.limitations-box p:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-green) 100%);
  color: var(--white);
}

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-box {
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.contact-info {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--sage-green);
}

.footer {
  margin-top: 4rem;
}

.footer h3 {
  color: var(--white);
}

.footer p,
.footer a {
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--sage-light);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  font-size: 0.9rem;
}

.cookie-banner.hidden {
  display: none;
}

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

.rounded {
  border-radius: 0.75rem;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .content-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
