:root {
  --primary-color: #0B4F38;
  --primary-dark: #083a29;
  --primary-light: #0d6446;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --background: #ffffff;
  --background-soft: #f8faf9;
  --border-color: #e9ecef;
  --shadow: 0 4px 12px rgba(11, 79, 56, 0.08);
  --shadow-hover: 0 8px 24px rgba(11, 79, 56, 0.12);
}

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

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  min-height: 100vh;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.navbar {
  background: var(--background);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

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

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
  padding-bottom: 60px;
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(11, 79, 56, 0.05) 0%, rgba(248, 250, 249, 0.8) 100%);
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--background-soft);
}

.content-block {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-block:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.table {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

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

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

.faq-item {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(11, 79, 56, 0.1);
}

.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

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

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner .btn {
  margin-right: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .section {
    padding: 40px 0;
  }

  .content-image-left,
  .content-image-right {
    float: none;
    margin: 0 auto 1.5rem;
    display: block;
  }

  .content-block {
    padding: 1.5rem;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 576px) {
  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
