:root {
  --primary-color: #2E8B57;
  --accent-khaki: #F0E68C;
  --accent-blue: #B0C4DE;
  --accent-purple: #6A5ACD;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
}

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

html, body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.025rem;
  line-height: 1.7;
  color: var(--text-light);
}

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

a:hover {
  color: var(--accent-purple);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.hero-section {
  background: url('images/hero-natural-landscape.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--bg-white);
  padding: 8rem 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 139, 87, 0.6);
}

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

.hero-section h1 {
  color: var(--bg-white);
  max-width: 800px;
}

.hero-section p {
  color: var(--bg-white);
  font-size: 1.2rem;
  max-width: 700px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.two-column-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.two-column-image:hover img {
  transform: scale(1.02);
}

.two-column-text {
  padding: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(46, 139, 87, 0.1);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

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

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
  background-color: var(--bg-light);
}

.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary-color);
}

.button-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-top: 2px solid var(--primary-color);
}

footer h3 {
  color: var(--accent-khaki);
  font-size: 1.2rem;
}

footer p, footer a {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--accent-khaki);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.disclaimer {
  background-color: var(--accent-blue);
  color: var(--text-dark);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer p {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  margin: 3rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) > div {
  direction: ltr;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  left: -8px;
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

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

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: var(--bg-white);
  color: var(--text-light);
}

.accordion-item.active .accordion-content {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  max-width: 100%;
}

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

.cookie-banner p {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.cookie-accept:hover {
  background-color: #1f6641;
}

.cookie-decline {
  background-color: #666;
  color: var(--bg-white);
}

.cookie-decline:hover {
  background-color: #555;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-khaki);
  border: 1px solid var(--accent-khaki);
}

.cookie-learn:hover {
  background-color: var(--accent-khaki);
  color: var(--text-dark);
}

.text-center {
  text-align: center;
}

.text-success {
  color: var(--primary-color);
}

.margin-top {
  margin-top: 3rem;
}

.margin-bottom {
  margin-bottom: 3rem;
}

.glossary-list {
  list-style: none;
  margin: 2rem 0;
}

.glossary-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.glossary-item:last-child {
  border-bottom: none;
}

.glossary-term {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.glossary-definition {
  color: var(--text-light);
  margin-left: 0;
}

.vertical-spacer {
  height: 2rem;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  header .container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 4rem 0;
    min-height: auto;
  }

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }

  .timeline-item > div {
    direction: ltr !important;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-banner-buttons button {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.8rem;
  }

  p {
    font-size: 0.95rem;
  }
}
