@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --primary-green: #224229;
  --accent-gold: #CFA04B;
  --warm-beige: #F8F4E3;
  --muted-clay: #A87D6D;
  --text-dark: #333333;
  --border-light: #E8E4D8;
  --shadow-soft: 0 2px 8px rgba(34, 66, 41, 0.1);
  --shadow-medium: 0 4px 12px rgba(34, 66, 41, 0.15);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--muted-clay);
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

li {
  margin-bottom: 0.8rem;
}

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

a:hover {
  color: var(--muted-clay);
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--primary-green);
  color: white;
  padding: 1.2rem 0;
  box-shadow: var(--shadow-soft);
  z-index: 100;
}

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

header .logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

header .logo img {
  width: 40px;
  height: 40px;
}

header nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

header nav a {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

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

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

main {
  flex: 1;
}

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

section:last-child {
  border-bottom: none;
}

section.hero {
  padding: 0;
  border-bottom: none;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, rgba(34, 66, 41, 0.8) 100%);
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-natural-landscape.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

section.hero .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: white;
  width: 100%;
}

section.hero h1 {
  color: var(--warm-beige);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

section.hero p {
  color: rgba(248, 244, 227, 0.95);
  font-size: 1.2rem;
  line-height: 1.8;
}

section.highlight {
  background-color: var(--warm-beige);
}

section.alternate {
  background-color: #f9f7f1;
}

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

.text-col {
  flex: 1;
}

.image-col {
  flex: 1;
}

.image-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  display: block;
  max-width: 500px;
}

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

.row-reverse .image-col {
  order: 2;
}

.row-reverse .text-col {
  order: 1;
}

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

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

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

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

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

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--accent-gold);
  color: var(--primary-green);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--muted-clay);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green);
  border-color: var(--accent-gold);
}

.disclaimer-box {
  background-color: var(--warm-beige);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--primary-green);
}

.faq-list {
  list-style: none;
  margin: 0;
}

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

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  margin-top: 0;
  color: var(--accent-gold);
}

.faq-item p {
  margin-bottom: 0;
}

footer {
  background-color: var(--primary-green);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

footer .container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

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

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

footer a {
  color: rgba(248, 244, 227, 0.8);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0 2rem;
}

.footer-copyright {
  color: rgba(248, 244, 227, 0.6);
}

.footer-disclaimer {
  color: var(--accent-gold);
  font-weight: 600;
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: var(--primary-green);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(207, 160, 75, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(34, 66, 41, 0.3);
  z-index: 1000;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--accent-gold);
  color: var(--primary-green);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  text-decoration: underline;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #666;
}

.breadcrumb a {
  color: var(--accent-gold);
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-content h1 {
  color: var(--primary-green);
  font-size: 2.5rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .row-reverse,
  .section-content {
    grid-template-columns: 1fr;
  }

  .row-reverse .image-col,
  .row-reverse .text-col {
    order: initial;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  header nav {
    gap: 1.5rem;
  }

  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 2.5rem 0;
  }

  section.hero {
    min-height: 350px;
  }

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

  section.hero p {
    font-size: 1rem;
  }

  .container,
  .container-wide {
    padding: 0 1rem;
  }

  header .container {
    padding: 0 1rem;
  }

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

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

  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner .container {
    padding: 0;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

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

  header nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  body {
    font-size: 14px;
  }

  section {
    padding: 1.5rem 0;
  }

  section.hero {
    min-height: 280px;
    padding: 2rem 0;
  }

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

  section.hero p {
    font-size: 0.95rem;
  }

  header nav {
    display: none;
  }

  .container,
  .container-wide {
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  form {
    max-width: 100%;
  }

  .footer-disclaimer {
    font-size: 0.8rem;
  }
}
