:root {
  --color-primary: #224A3B;
  --color-accent: #D47B41;
  --color-bg-light: #F5F0E5;
  --color-gold: #C1A06F;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #E0D5C7;
  --radius: 8px;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #FFFFFF;
}

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

header .logo:hover {
  color: var(--color-accent);
}

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

header a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

header a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

footer {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 4rem 2rem;
  margin-top: 6rem;
}

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

footer h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--color-bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

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

footer p {
  color: var(--color-bg-light);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section-even {
  background-color: #FFFFFF;
}

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

.hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 74, 59, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
}

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

.two-col-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.two-col-alt {
  grid-auto-flow: dense;
}

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

.card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(34, 74, 59, 0.1);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
}

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

th {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
}

tr:hover {
  background-color: var(--color-bg-light);
}

.list-group {
  list-style: none;
  margin: 2rem 0;
}

.list-group li {
  padding: 1rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.cta-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-link:hover {
  border-bottom-color: var(--color-accent);
}

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

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

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

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 123, 65, 0.1);
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--color-accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background-color: #B86A35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 123, 65, 0.3);
}

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

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

.disclaimer strong {
  color: var(--color-primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 2rem;
  max-width: 400px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner p {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cookie-accept {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

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

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

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

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

.cookie-learn:hover {
  background-color: rgba(212, 123, 65, 0.1);
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

  .two-col, .three-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .cookie-banner {
    max-width: 100%;
    left: 0;
    right: auto;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container-wide {
    padding: 0 1rem;
  }

  header nav {
    padding: 1rem;
    flex-wrap: wrap;
  }

  header ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero {
    min-height: 60vh;
  }

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

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
