:root {
  --color-olive: #556B2F;
  --color-taupe: #B38B6D;
  --color-sage: #9CAF88;
  --color-forest: #2F4F4F;
  --color-white: #FAFAF8;
  --color-dark: #2C2C2C;
  --color-light-gray: #E8E6E1;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.88;
  color: var(--color-dark);
  background-color: var(--color-white);
  letter-spacing: 0.3px;
}

h1 {
  font-size: 4.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-olive);
  margin-bottom: 1.5rem;
  text-transform: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  letter-spacing: -0.01em;
}

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

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

strong {
  font-weight: 600;
  color: var(--color-forest);
}

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

a {
  color: var(--color-olive);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo-home {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-home img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-olive);
  text-decoration: none;
}

.logo-text:hover {
  color: var(--color-taupe);
  border-bottom: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

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

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

section {
  padding: 4rem 2rem;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  min-height: 600px;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(85, 107, 47, 0.4), rgba(47, 79, 79, 0.4));
  z-index: 1;
}

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

.hero-section h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.content-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.content-section.alternate {
  grid-template-columns: 0.8fr 1.2fr;
}

.content-section.alternate .image-block {
  order: 2;
}

.content-section.alternate .text-block {
  order: 1;
}

.text-block {
  padding: 2rem;
  background-color: rgba(250, 250, 248, 0.8);
}

.image-block {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-block:hover img {
  transform: scale(1.02);
}

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

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

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

.card:hover {
  box-shadow: 0 8px 24px rgba(85, 107, 47, 0.12);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-olive);
  color: var(--color-white);
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.button:hover {
  background-color: var(--color-taupe);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(85, 107, 47, 0.25);
  color: var(--color-white);
  border-bottom: none;
}

.button-secondary {
  background-color: transparent;
  color: var(--color-olive);
  border: 1px solid var(--color-olive);
}

.button-secondary:hover {
  background-color: var(--color-olive);
  color: var(--color-white);
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1);
}

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

.disclaimer {
  background-color: rgba(156, 175, 136, 0.08);
  border-left: 4px solid var(--color-sage);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  border-radius: 2px;
}

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

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

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

.faq-question {
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--color-dark);
  line-height: 1.88;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-sage);
  margin-top: 0;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section a {
  color: var(--color-sage);
  font-size: 0.95rem;
}

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

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-light-gray), transparent);
  margin: 3rem 0;
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-content h1 {
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

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

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

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

.cookie-banner-accept:hover {
  background-color: var(--color-taupe);
}

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

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

.cookie-banner-learn {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
}

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

.banner-message {
  background: linear-gradient(135deg, rgba(85, 107, 47, 0.05), rgba(156, 175, 136, 0.05));
  border-left: 4px solid var(--color-olive);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
  font-size: 0.95rem;
}

.blog-header-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  color: var(--color-taupe);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-taupe);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-olive);
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .content-section,
  .content-section.alternate {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-section.alternate .image-block,
  .content-section.alternate .text-block {
    order: initial;
  }

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

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

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

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

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

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

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

  .hero-section {
    padding: 4rem 1rem;
  }

  .button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
