:root {
  --primary-green: #0F6140;
  --light-green: #f0f7f4;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-light: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, var(--light-green) 100%);
  min-height: 100vh;
}

header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
  color: var(--primary-green);
}

main {
  margin-top: 76px;
}

.hero-section {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 97, 64, 0.1);
  margin: 2rem auto;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

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

.content-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.content-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 400px;
}

.card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(15, 97, 64, 0.12);
}

.card-header {
  background: var(--light-green);
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--primary-green);
}

.table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background: var(--primary-green);
  color: white;
}

.disclaimer-box {
  background: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 32px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0d5236;
  border-color: #0d5236;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 97, 64, 0.3);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 32px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

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

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

footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(15, 97, 64, 0.25);
}

.accordion .card-header {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion .card-header:hover {
  background-color: #e8f5f0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
  font-size: 1.5rem;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
    max-width: 100%;
  }
  
  main {
    margin-top: 66px;
  }
}
