:root {
  --olive-green: #6B8E23;
  --terracotta: #E27D60;
  --wheat: #F5DEB3;
  --bark-brown: #3E2723;
  --off-white: #F9F7F4;
  --light-gray: #E8E6E1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: var(--bark-brown);
  background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--bark-brown);
  margin: 1rem 0;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem 0;
}

em {
  font-style: italic;
  color: var(--olive-green);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--off-white);
  box-shadow: 0 2px 8px rgba(62, 39, 35, 0.08);
  z-index: 100;
  transition: box-shadow 0.35s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(62, 39, 35, 0.12);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--olive-green) !important;
  text-decoration: none;
  transition: color 0.35s ease;
}

.navbar-brand:hover {
  color: var(--terracotta) !important;
}

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

.nav-link {
  color: var(--bark-brown) !important;
  font-weight: 500;
  transition: color 0.35s ease, transform 0.35s ease;
  margin: 0 0.5rem;
}

.nav-link:hover {
  color: var(--olive-green) !important;
  transform: scale(1.04);
}

footer {
  background-color: var(--bark-brown);
  color: var(--wheat);
  padding: 3rem 0 1rem;
  margin-top: 150px;
}

footer h4 {
  color: var(--wheat);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: var(--wheat);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

footer a {
  text-decoration: none;
  transition: color 0.35s ease;
}

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

footer hr {
  border-color: rgba(245, 222, 179, 0.3);
  margin: 1.5rem 0;
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(245, 222, 179, 0.8);
  text-align: center;
  padding-top: 1rem;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.3);
  z-index: 1;
}

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

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

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.container-custom {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 20px;
  }
  
  .hero {
    height: 300px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}

section {
  padding: 150px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  margin: 150px 0;
}

.two-column.reversed {
  grid-template-columns: 45% 55%;
}

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

@media (max-width: 992px) {
  .two-column, .two-column.reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(62, 39, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(107, 142, 35, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.card p {
  font-size: 0.95rem;
  color: var(--bark-brown);
  margin-bottom: 1rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(62, 39, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(107, 142, 35, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  color: var(--olive-green);
  margin: 0 0 0.8rem 0;
}

.blog-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

button, .btn {
  background-color: var(--olive-green);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--terracotta);
  transform: scale(1.04);
}

button:active, .btn:active {
  transform: scale(0.98);
}

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

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

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

input:focus, textarea:focus {
  outline: none;
  border-color: var(--olive-green);
  box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.1);
}

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

.accordion {
  border: none;
}

.accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.accordion-item:hover {
  box-shadow: 0 2px 8px rgba(107, 142, 35, 0.1);
}

.accordion-button {
  background-color: var(--off-white);
  color: var(--bark-brown);
  font-weight: 600;
  border: none;
  padding: 1.2rem;
  text-align: left;
  transition: background-color 0.35s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--wheat);
  box-shadow: none;
  color: var(--bark-brown);
}

.accordion-button:hover {
  background-color: var(--light-gray);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
  color: var(--bark-brown);
}

.disclaimer-box {
  background-color: rgba(107, 142, 35, 0.05);
  border-left: 4px solid var(--olive-green);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--bark-brown);
}

.disclaimer-box strong {
  color: var(--olive-green);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bark-brown);
  color: var(--wheat);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
  display: none;
}

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

.cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

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

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.35s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background-color: var(--terracotta);
  transform: scale(1.04);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--wheat);
  border: 1px solid var(--wheat);
}

.cookie-btn-reject:hover {
  background-color: rgba(245, 222, 179, 0.1);
  transform: scale(1.04);
}

.cookie-btn-learn {
  background-color: var(--terracotta);
  color: white;
}

.cookie-btn-learn:hover {
  background-color: var(--olive-green);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

.page-title {
  margin: 2rem 0;
}

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

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

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

.text-muted {
  color: #999;
  font-size: 0.95rem;
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.featured-banner {
  background-size: cover;
  background-position: center;
  padding: 100px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 150px 0;
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.4);
}

.featured-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.featured-banner h2 {
  color: white;
  font-size: 2.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .featured-banner {
    padding: 40px 20px;
  }
  
  .featured-banner h2 {
    font-size: 1.8rem;
  }
  
  .featured-banner p {
    font-size: 1rem;
  }
}

.link-primary {
  color: var(--olive-green);
  text-decoration: none;
  transition: color 0.35s ease;
}

.link-primary:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.numbered-list {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: item;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.8;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: var(--terracotta);
  font-size: 1.2rem;
}

.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item.active {
  color: var(--bark-brown);
}

.breadcrumb-item a {
  color: var(--olive-green);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}
