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

:root {
  --forest-green: #228B22;
  --soft-gold: #D4AF37;
  --terracotta: #E2725B;
  --light-sage: #C1D7AE;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --gray-light: #f5f5f5;
  --gray-dark: #666666;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--forest-green);
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--forest-green);
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest-green);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  margin-right: 0.5rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--forest-green);
}

footer {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 4rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--soft-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--soft-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 139, 34, 0.4);
}

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

.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

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

.intro-section {
  background-color: var(--gray-light);
  text-align: center;
}

.intro-section h2 {
  margin-bottom: 2rem;
}

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

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

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

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

.column-image-left .text-content {
  order: 2;
}

.column-image-left img {
  order: 1;
}

.column-image-right .text-content {
  order: 1;
}

.column-image-right img {
  order: 2;
}

.cards-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 #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--forest-green);
}

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

.card p {
  font-size: 1rem;
  color: var(--gray-dark);
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--soft-gold);
  color: var(--black);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 175, 55, 0.3);
}

.full-width-block {
  background: linear-gradient(135deg, var(--forest-green) 0%, rgba(34, 139, 34, 0.8) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.full-width-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.full-width-block-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.full-width-block h2 {
  color: var(--white);
}

.full-width-block p {
  color: var(--white);
  font-size: 1.2rem;
}

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

table th {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:hover {
  background-color: var(--gray-light);
}

.list-section {
  background-color: var(--gray-light);
  padding: 3rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.list-section ul {
  list-style: none;
  padding: 0;
}

.list-section li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.disclaimer {
  background-color: #f0f0f0;
  border-left: 4px solid var(--terracotta);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

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

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

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

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

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

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

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

.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: var(--soft-gold);
  color: var(--black);
}

.cookie-learn:hover {
  background-color: #c9a035;
}

.hidden {
  display: none;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }

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

  .column-image-left,
  .column-image-right {
    grid-template-columns: 1fr;
  }

  .column-image-left .text-content,
  .column-image-left img,
  .column-image-right .text-content,
  .column-image-right img {
    order: unset !important;
  }

  .hero {
    height: 400px;
  }

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

  section {
    padding: 2rem 1rem;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-text {
    margin-right: 0;
  }
}
