:root {
  --primary-color: #0D5C2E;
  --primary-dark: #094521;
  --primary-light: #1a7a42;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-pale-green: #f0f7f3;
  --border-light: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-pale-green) 100%);
  min-height: 100vh;
}

.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

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

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

main {
  margin-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(13, 92, 46, 0.05) 0%, rgba(13, 92, 46, 0.02) 100%);
  padding: 5rem 0 4rem;
  position: relative;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-height: 500px;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}

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

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

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

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-dark);
  line-height: 1.7;
}

.table {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

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

.table thead th {
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.table tbody td {
  padding: 1rem;
  border-top: 1px solid var(--border-light);
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-left: 4px solid #ffc107;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

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

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.educational-notice {
  background: var(--bg-pale-green);
  border: 2px solid var(--primary-light);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 8px;
  text-align: center;
}

.educational-notice h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.educational-notice p {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.faq-answer {
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  background: var(--bg-pale-green);
  padding: 2.5rem;
  border-radius: 8px;
  height: 100%;
}

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

.contact-info p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-info strong {
  color: var(--primary-dark);
  font-weight: 600;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bg-white);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: var(--bg-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;
}

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

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

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .card {
    padding: 1.5rem;
  }
}
