:root {
  --color-primary: #4A7C59;
  --color-accent-warm: #F7C59F;
  --color-accent-cool: #A5D8DD;
  --color-light: #E0E0E0;
  --color-white: #FFFFFF;
  --color-dark: #2C2C2C;
}

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

html, body {
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

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

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

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header nav {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

header .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

header .nav-links a {
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.full-width {
  width: 100%;
}

section {
  padding: 6rem 0;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(74, 124, 89, 0.3), rgba(74, 124, 89, 0.3)), url('images/hero-dawn.jpg') center/cover no-repeat;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 4rem;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.section-intro {
  background-color: #f9f9f9;
  padding: 4rem 0;
  text-align: center;
}

.section-intro p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.section-content h2 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.section-content h3 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-content ul, .section-content ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.section-content li {
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.15);
  transform: translateY(-5px);
}

.card h3 {
  color: var(--color-primary);
  margin-top: 0;
}

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

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.btn-secondary {
  background-color: var(--color-accent-warm);
  border-color: var(--color-accent-warm);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--color-accent-warm);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--color-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.disclaimer {
  background-color: #f0f8f5;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-dark);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h4 {
  color: var(--color-accent-warm);
  margin-bottom: 1.5rem;
}

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

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

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

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

.cookie-banner-buttons button {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-banner-buttons button.accept {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-banner-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    height: 400px;
  }

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

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

  .two-column.reverse {
    direction: ltr;
  }

  header .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 1rem;
  }

  header .nav-links {
    gap: 0.5rem;
  }

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