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

:root {
  --primary: #2E4F3E;
  --accent-gold: #C1A06A;
  --accent-terra: #B28A70;
  --accent-blue: #829EA4;
  --cream: #F5F5DC;
  --gray-light: #E8E8E8;
  --gray-medium: #ADADAD;
  --gray-dark: #6C757D;
  --text-dark: #333333;
  --white: #FFFFFF;
}

html, body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  font-size: 1rem;
  overflow-x: hidden;
}

h1 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

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

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

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

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

.logo {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

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

nav a {
  color: var(--white);
  margin-left: 2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  position: relative;
}

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

nav a.active {
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 0.25rem;
}

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

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: var(--cream);
}

.hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(193, 160, 106, 0.1) 0%, rgba(178, 138, 112, 0.1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

.hero p {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

.two-column img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  max-height: 500px;
  object-fit: cover;
}

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

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

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: var(--cream);
}

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

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

.cta-link:hover {
  background-color: var(--white);
  color: var(--primary);
}

.cta-link-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

.cta-link-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

footer {
  background-color: var(--primary);
  color: var(--cream);
  padding: 3rem 0;
  margin-top: 6rem;
}

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

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

.footer-section p, .footer-section a {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(193, 160, 106, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.accent-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 6rem 0;
}

.accent-section h2 {
  color: var(--white);
}

.accent-section p {
  color: var(--cream);
  font-size: 1.1rem;
}

.highlight {
  background-color: var(--accent-gold);
  color: var(--primary);
  padding: 0.2rem 0.4rem;
}

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

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

label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-light);
  border-radius: 0;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  background-color: var(--white);
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--cream);
}

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

button[type="submit"] {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

button[type="submit"]:hover {
  background-color: var(--white);
  color: var(--primary);
}

.context-disclaimer {
  background-color: var(--gray-light);
  border-left: 4px solid var(--accent-terra);
  padding: 1.5rem;
  margin: 3rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.context-disclaimer h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-container h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

.divider {
  height: 1px;
  background-color: var(--accent-gold);
  margin: 3rem 0;
}

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

  h2 {
    font-size: 1.6rem;
  }

h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 2px;
}

header nav {
  display: flex;
  gap: 2rem;
}

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

header nav a:hover,
header nav a.active {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

main {
  min-height: calc(100vh - 200px);
}

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

section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--gray-light);
}

section:last-child {
  border-bottom: none;
}

.hero {
  background: url('images/hero-leaf.jpg') center/cover;
  position: relative;
  padding: 10rem 2rem;
  color: var(--white);
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0;
}

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

.two-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.card {
  background-color: var(--cream);
  padding: 2rem;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

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

.card-title {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.divider {
  height: 2px;
  background-color: var(--gray-light);
  margin: 4rem 0;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.cta-link-outline {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-link-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  text-decoration: none;
}

footer {
  background-color: var(--primary);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  border-top: 2px solid var(--accent-gold);
}

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

footer h3 {
  color: var(--accent-gold);
  margin-top: 0;
}

footer p {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

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

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

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(193, 160, 106, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 245, 220, 0.7);
}

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

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

.accordion {
  border: 1px solid var(--gray-light);
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}

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

.accordion-header {
  background-color: var(--cream);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: #f0f0d8;
}

.accordion-header.active {
  background-color: var(--accent-gold);
  color: var(--white);
}

.accordion-content {
  padding: 1.5rem;
  background-color: var(--white);
  display: none;
}

.accordion-content.active {
  display: block;
}

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

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

table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
}

table tr:nth-child(even) {
  background-color: var(--cream);
}

.list-marked {
  list-style: none;
  padding-left: 0;
}

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

.list-marked li:before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.quote {
  border-left: 4px solid var(--accent-gold);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--gray-dark);
  font-size: 1.1rem;
}

.blockquote {
  background-color: var(--cream);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  margin: 2rem 0;
  font-weight: 600;
  color: var(--primary);
}

.glossary-rail {
  background-color: #fafaf5;
  border: 1px solid var(--gray-light);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.glossary-rail h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

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

.glossary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.glossary-term {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline {
  margin: 3rem 0;
  position: relative;
  padding-left: 3rem;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--accent-gold);
  padding-left: 2rem;
  position: relative;
}

.timeline-item:last-child {
  border-left: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

.blog-card {
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.blog-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.blog-card p {
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--cream);
  padding: 1.5rem 2rem;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  gap: 1rem;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner-content {
  max-width: 600px;
  font-size: 0.95rem;
}

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

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

.cookie-button.accept {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

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

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

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

.cookie-button.more {
  background-color: transparent;
  color: var(--cream);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.back-to-top:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  header .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  header nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  header nav a {
    padding: 0.8rem;
    border-bottom: none;
  }
  section {
    padding: 3rem 0;
  }
  .hero {
    padding: 5rem 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    bottom: 0;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
    font-size: 1.2rem;
  }

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

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

  nav a {
    margin-left: 0;
    padding-bottom: 0.5rem;
  }

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

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

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

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

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

  p {
    font-size: 1rem;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }
}
