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

:root {
  --primary-green: #5a8f4a;
  --accent-blue: #2c5282;
  --warm-beige: #d4c5a9;
  --soft-terracotta: #c97c5f;
  --dark-text: #2d3436;
  --light-bg: #f8f7f3;
  --white: #ffffff;
  --border-light: #e8e3d6;
}

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

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

button {
  font-family: 'Montserrat', sans-serif;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-green);
}

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 0.5rem;
}

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

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

footer {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
  margin-top: 4rem;
}

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

footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.5rem;
}

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

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

footer .copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

.hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-full {
  width: 100%;
  padding: 4rem 0;
}

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

.section-alt-accent {
  background-color: rgba(90, 143, 74, 0.05);
}

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

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

.two-column-alt:nth-child(even) {
  direction: rtl;
}

.two-column-alt:nth-child(even) > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

.card:hover {
  box-shadow: 0 8px 16px rgba(90, 143, 74, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-green);
}

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

.card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.list-structured {
  margin: 2rem 0;
}

.list-structured li {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.list-structured li:before {
  content: "•";
  color: var(--primary-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 143, 74, 0.4);
}

.disclaimer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--soft-terracotta);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--soft-terracotta);
  margin-bottom: 0.5rem;
}

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

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

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

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

.form-container {
  max-width: 600px;
  margin: 2rem auto;
}

.thank-you-message {
  text-align: center;
  padding: 3rem;
}

.thank-you-message h2 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-text);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

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

.cookie-consent p {
  margin: 0;
  flex: 1;
}

.cookie-consent button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #4a7a3a;
}

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0.5rem;
}

.cookie-learn:hover {
  color: var(--warm-beige);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.breadcrumb span {
  color: #999;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

table th {
  background-color: var(--light-bg);
  font-weight: 700;
  color: var(--accent-blue);
}

table tr:hover {
  background-color: rgba(90, 143, 74, 0.05);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .two-column-alt:nth-child(even) {
    direction: ltr;
  }

  .hero {
    height: 300px;
  }

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

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

  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-consent button {
    width: 100%;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  footer .copyright {
    grid-column: 1;
  }

  html, body {
    font-size: 16px;
  }
}
