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

:root {
  --color-earthy-green: #4a6d5e;
  --color-muted-gold: #d4a574;
  --color-deep-ocean: #2d4a5e;
  --color-soft-cream: #f5f3f0;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-light-gray: #e8e6e3;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--color-earthy-green);
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

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

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

a:hover {
  color: var(--color-muted-gold);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-earthy-green);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-muted-gold);
}

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

nav a {
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  transition: all 0.3s ease;
}

nav a:hover {
  border-bottom-color: var(--color-earthy-green);
  color: var(--color-earthy-green);
}

main {
  margin-top: 70px;
}

section {
  padding: 5rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.section-hero {
  background: linear-gradient(135deg, rgba(74, 109, 94, 0.8), rgba(45, 74, 94, 0.8)), url('images/hero-landscape.jpg') center/cover;
  color: var(--color-white);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  margin-top: 70px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--color-soft-cream);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-muted-gold);
  color: var(--color-dark);
  border-color: var(--color-muted-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-muted-gold);
  border-color: var(--color-muted-gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-earthy-green);
  border-color: var(--color-earthy-green);
}

.btn-secondary:hover {
  background-color: var(--color-earthy-green);
  color: var(--color-white);
}

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

.section-full-width {
  padding: 0;
  margin: 0;
}

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

.row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col-6 {
  flex: 1;
}

.col-image {
  flex: 1;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

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

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

table thead {
  background-color: var(--color-earthy-green);
  color: var(--color-white);
}

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

table tbody tr:hover {
  background-color: var(--color-soft-cream);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-soft-cream);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

footer h4 {
  color: var(--color-muted-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer a {
  color: var(--color-soft-cream);
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--color-muted-gold);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 243, 240, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.disclaimer {
  background-color: var(--color-soft-cream);
  border-left: 4px solid var(--color-earthy-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

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

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

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-earthy-green);
  box-shadow: 0 0 0 3px rgba(74, 109, 94, 0.1);
}

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

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

.text-muted {
  color: #666;
}

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

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

.pt-5 {
  padding-top: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-soft-cream);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.btn-cookie {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--color-muted-gold);
  color: var(--color-dark);
}

.btn-accept:hover {
  background-color: #c9945a;
}

.btn-decline {
  background-color: transparent;
  color: var(--color-soft-cream);
  border: 1px solid var(--color-soft-cream);
}

.btn-decline:hover {
  background-color: rgba(245, 243, 240, 0.1);
}

.btn-learn-more {
  background-color: transparent;
  color: var(--color-muted-gold);
  border: 1px solid var(--color-muted-gold);
}

.btn-learn-more:hover {
  background-color: var(--color-muted-gold);
  color: var(--color-dark);
}

.educational-notice {
  background-color: var(--color-soft-cream);
  border: 1px solid var(--color-earthy-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--color-earthy-green);
}

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

  h2 {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .row {
    flex-direction: column;
    gap: 2rem;
  }

  .row.reverse {
    flex-direction: column;
  }

  .section-hero {
    min-height: 400px;
    padding: 5rem 1.5rem;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .btn-cookie {
    flex: 1;
  }

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