:root {
  --color-white: #f9f9f6;
  --color-green: #4a6348;
  --color-terracotta: #b14e3a;
  --color-oat: #f0e8d5;
  --color-taupe: #8c8a84;
  --color-dark-green: #3c513b;
  --color-text: #2a2a2a;
  --radius: 10px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 62px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 72ch;
}

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

a:hover {
  color: var(--color-dark-green);
}

button, .btn {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--color-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-dark-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-dark-green);
}

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

nav a {
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
}

footer {
  background-color: #f5f5f2;
  padding: 3rem 2rem;
  margin-top: 5rem;
  border-top: 1px solid #e0e0d9;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0d9;
  font-size: 13px;
  color: #888;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

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

.section {
  padding: 8rem 2rem;
}

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

.section-oat {
  background-color: var(--color-oat);
}

.section-taupe-light {
  background-color: #f5f3f0;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 6rem 2rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

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

.hero h1 {
  font-size: 78px;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

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

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

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0e8d5;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 15px;
  color: #666;
}

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

.bullet-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
  font-size: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: white;
  border: 1px solid #e0e0d9;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

tr:last-child td {
  border-bottom: none;
}

.accordion {
  border: 1px solid #e0e0d9;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background-color: white;
}

.accordion-header {
  padding: 1.5rem;
  background-color: #fafaf8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid #e0e0d9;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--color-oat);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content.active {
  max-height: 500px;
  padding: 1.5rem;
}

.accordion-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

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

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

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

input[type='email'],
input[type='text'],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0d9;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type='email']:focus,
input[type='text']:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(74, 99, 72, 0.1);
}

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

.disclaimer {
  background-color: var(--color-oat);
  padding: 1.5rem;
  border-left: 4px solid var(--color-terracotta);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-green);
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-content {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

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

.cookie-buttons a,
.cookie-buttons button {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-6 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 3rem 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    grid-template-columns: 1fr;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.text-balance {
  text-wrap: balance;
}

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

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

.pt-2 {
  padding-top: 2rem;
}

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

.disclaimer-block {
  background-color: #fffaef;
  border: 1px solid #e0e0d9;
  padding: 2rem;
  border-radius: var(--radius);
  margin: 3rem 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

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

.blog-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

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

.read-more {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}
