:root {
  --primary-color: #228b22;
  --primary-dark: #1a6b1a;
  --primary-light: #2ea02e;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
}

* {
  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.6;
  background-color: var(--bg-white);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--text-color);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

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

.nav-item.active .nav-link {
  color: var(--primary-color) !important;
}

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

.hero-section h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e9 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .lead {
  margin-bottom: 0;
}

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

.content-block.bg-light {
  background-color: var(--bg-light);
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block ul {
  color: var(--text-light);
  padding-left: 1.5rem;
}

.content-block ul li {
  margin-bottom: 0.5rem;
}

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.cta-section {
  background: linear-gradient(135deg, #e9f5e9 0%, #d4ecd4 100%);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

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

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

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

.form-control {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.footer {
  background-color: #2d3436;
  color: #b2bec3;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  color: #b2bec3;
}

.footer a {
  color: #b2bec3;
  transition: color 0.2s ease;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer .disclaimer-text {
  color: #b2bec3;
}

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

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

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

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

.cookie-banner a {
  text-decoration: underline;
}

.table {
  background: var(--bg-white);
}

.table th {
  background: var(--bg-light);
  font-weight: 600;
}

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

.rounded {
  border-radius: 8px !important;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
    text-align: center;
  }

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

  .hero-section img {
    margin-top: 2rem;
  }

  .content-block {
    padding: 3rem 0;
  }

  .content-block img {
    margin-top: 1.5rem;
  }

  .page-header {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .content-block .row {
    flex-direction: column;
  }

  .info-card {
    margin-bottom: 1rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

  .footer {
    text-align: center;
  }

  .footer .col-lg-4 {
    margin-bottom: 2rem;
  }
}
