@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-moss-green: #556B55;
  --color-wood-brown: #8B6F47;
  --color-warm-cream: #F5F1E8;
  --color-soft-terracotta: #C97D5C;
  --color-white: #FFFFFF;
  --color-black: #1a1a1a;
  --color-gray-light: #E8E4DC;
  --color-gray-medium: #D4CEC2;
  --color-gray-dark: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

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

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

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-moss-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

nav a {
  text-decoration: none;
  color: var(--color-black);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

section {
  padding: 5rem 2rem;
  margin: 0;
}

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

.hero-section {
  background-color: var(--color-warm-cream);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 3rem;
  border-radius: 8px;
}

.section-title {
  color: var(--color-moss-green);
  margin-bottom: 2rem;
  text-align: center;
}

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

.column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.column-text h2 {
  margin-bottom: 1.5rem;
}

.column-text p {
  margin-bottom: 1.5rem;
}

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

.card {
  background-color: var(--color-warm-cream);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-moss-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(85, 107, 85, 0.1);
}

.card h3 {
  color: var(--color-wood-brown);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-moss-green);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--color-wood-brown);
  box-shadow: 0 4px 12px rgba(85, 107, 85, 0.2);
}

.cta-secondary {
  background-color: transparent;
  color: var(--color-moss-green);
  border: 2px solid var(--color-moss-green);
}

.cta-secondary:hover {
  background-color: var(--color-moss-green);
  color: var(--color-white);
}

.disclaimer-box {
  background-color: var(--color-gray-light);
  border-left: 4px solid var(--color-soft-terracotta);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-box strong {
  color: var(--color-wood-brown);
}

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
  font-family: 'Roboto', sans-serif;
}

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

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-moss-green);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-moss-green);
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-dark);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-medium);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 999;
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
}

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

.cookie-content {
  flex: 1;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--color-moss-green);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: var(--color-wood-brown);
}

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

.cookie-decline:hover {
  background-color: var(--color-gray-dark);
}

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

.cookie-learn:hover {
  background-color: var(--color-gray-dark);
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-black);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-medium);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-moss-green);
}

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

.alt-section {
  background-color: var(--color-warm-cream);
}

.list-items {
  list-style: none;
  margin: 1.5rem 0;
}

.list-items li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.list-items li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-moss-green);
  font-weight: bold;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
  font-family: 'Roboto', sans-serif;
}

.breadcrumb a {
  color: var(--color-moss-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-moss-green);
  cursor: pointer;
  margin-bottom: 1rem;
}

.faq-answer {
  line-height: 1.8;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  header {
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .three-column {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 1rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

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