:root {
  --sage-green: #9caf88;
  --sage-dark: #7a9070;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  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;
  background-color: #ffffff;
}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--sage-green);
}

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

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

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

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

.content-section:nth-child(even) {
  background-color: var(--light-bg);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 1.5rem;
}

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

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
  border-left: 4px solid #ffc107;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

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

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.btn-light-custom {
  background-color: white;
  color: var(--sage-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
}

.btn-light-custom:hover {
  background-color: var(--light-bg);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--sage-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--sage-green);
}

footer p {
  margin-bottom: 0.5rem;
  color: #bdc3c7;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #95a5a6;
}

.contact-form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-dark) 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

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

.policy-content h1 {
  color: var(--sage-dark);
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--sage-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content p, .policy-content ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  display: inline;
}

.cookie-banner button {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
}
