:root {
  --sage-green: #87a96b;
  --sage-green-dark: #6b8556;
  --sage-green-light: #a3c083;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(135, 169, 107, 0.7) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.section-title {
  color: var(--sage-green);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--sage-green);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.btn-custom {
  background: var(--sage-green);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.info-card {
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  height: 100%;
}

.disclaimer-box {
  background: var(--bg-light);
  border-left: 4px solid var(--sage-green);
  border-radius: 5px;
}

.contact-info-box {
  background: var(--bg-light);
  border-radius: 10px;
}

.thank-you-box {
  background: var(--bg-light);
  border-radius: 10px;
}

.check-icon svg {
  display: inline-block;
}

.footer {
  margin-top: 60px;
}

.text-sage {
  color: var(--sage-green-light);
}

.footer a {
  transition: color 0.3s ease;
}

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

.page-header {
  border-bottom: 3px solid var(--sage-green);
}

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

.cookie-banner.show {
  display: block;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 400px;
  }

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

  .display-4 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-image-container {
    height: 300px;
  }

  .section-content {
    padding: 30px 0;
  }
}
