:root {
  --primary-color: #558B2F;
  --primary-dark: #33691E;
  --text-color: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
  --transition: 0.25s ease;
}

* {
  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-color);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

body {
  padding-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(85, 139, 47, 0.05) 0%, rgba(85, 139, 47, 0.02) 100%);
  padding: 5rem 0;
  margin-bottom: 4rem;
}

.hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.section-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}

.section-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
  margin-bottom: 2rem;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.25rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-body {
  padding: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 3rem 0;
  border-radius: 6px;
}

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

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

.footer {
  background-color: #212529;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p, .footer a {
  color: #adb5bd;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #6c757d;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #fff;
  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-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  margin-right: 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-muted);
  padding-left: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(85, 139, 47, 0.25);
}

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-info strong {
  min-width: 100px;
  display: inline-block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .section-image.float-left,
  .section-image.float-right {
    float: none;
    margin: 0 auto 1.5rem;
    display: block;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .section-image {
    max-width: 100%;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
  }
}
