:root {
  --forest-green: #228b22;
  --forest-green-dark: #1a6b1a;
  --forest-green-light: #2ca02c;
  --light-bg: #f8faf8;
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-muted: #6c757d;
  --border-light: #e8ece8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.navbar {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

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

.hero-section p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.content-block:nth-child(even) {
  background-color: var(--white);
}

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

.block-title {
  color: var(--forest-green-dark);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.block-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.block-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.block-image {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.cta-section h2 {
  color: var(--forest-green-dark);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-forest {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-forest:hover {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
  text-decoration: none;
}

.btn-outline-forest {
  background: transparent;
  color: var(--forest-green);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--forest-green);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-forest:hover {
  background: var(--forest-green);
  color: var(--white);
  text-decoration: none;
}

.limitations-block {
  background: linear-gradient(135deg, #f0f5f0 0%, #e8ede8 100%);
  border-left: 4px solid var(--forest-green);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.limitations-block h3 {
  color: var(--forest-green-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.limitations-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

footer {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, #145214 100%);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.page-header {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  margin-bottom: 0;
}

.page-content {
  background: var(--white);
  padding: 3rem 0;
  min-height: 50vh;
}

.page-content h2 {
  color: var(--forest-green-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  color: var(--forest-green-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

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

.contact-info {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

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

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

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

  .hero-image {
    margin-top: 2rem;
  }

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

  .block-title {
    font-size: 1.5rem;
  }

  .block-image {
    margin-top: 1.5rem;
  }

  footer {
    text-align: center;
  }

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

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

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

  .btn-forest,
  .btn-outline-forest {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
