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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fafaf8;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2c2c2c;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.8rem;
  font-weight: 600;
  margin-top: 3.6rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

a {
  color: #5F836E;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4a6557;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e6;
  padding: 1.2rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.6rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #5F836E;
}

.logo:hover {
  color: #4a6557;
  text-decoration: none;
}

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

.nav-links a {
  color: #2c2c2c;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #5F836E;
}

main {
  margin-top: 80px;
  padding: 0;
}

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

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

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

.hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.hero p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.6rem;
}

section {
  padding: 3.6rem 0;
  border-bottom: 1px solid #e8e8e6;
}

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

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
  align-items: center;
}

.row.reverse {
  direction: rtl;
}

.row.reverse > div {
  direction: ltr;
}

.row-single {
  display: grid;
  grid-template-columns: 1fr;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
  margin-top: 0;
  margin-bottom: 1.8rem;
}

.content-block p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #3c3c3c;
}

.cta-block {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.9rem 2.4rem;
  background-color: #5F836E;
  color: #ffffff;
  border-radius: 2px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-block:hover {
  background-color: #4a6557;
  text-decoration: none;
}

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

.blog-card {
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.blog-card p {
  color: #5c5c5c;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.faq-item {
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #e8e8e6;
}

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

.faq-question {
  font-weight: 600;
  color: #5F836E;
  margin-bottom: 0.9rem;
  cursor: pointer;
}

.faq-answer {
  color: #3c3c3c;
  line-height: 1.6;
}

.disclaimer-block {
  background-color: #f5f5f3;
  padding: 1.8rem;
  border-left: 4px solid #5F836E;
  margin: 2.4rem 0;
  border-radius: 2px;
}

.disclaimer-block h3 {
  margin-top: 0;
  color: #5F836E;
}

.disclaimer-block p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #3c3c3c;
  line-height: 1.6;
}

footer {
  background-color: #2c2c2c;
  color: #e8e8e6;
  padding: 3.6rem;
  margin-top: 3.6rem;
}

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

.footer-section h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  margin-top: 0;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  color: #c8c8c8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #5F836E;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #404040;
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.9rem;
  color: #a8a8a8;
}

.contact-form {
  background-color: #ffffff;
  padding: 2.4rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 2.4rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #2c2c2c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #d0d0cc;
  border-radius: 2px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5F836E;
  box-shadow: 0 0 0 3px rgba(95, 131, 110, 0.1);
}

.form-submit {
  background-color: #5F836E;
  color: #ffffff;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #4a6557;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #e8e8e6;
  padding: 1.8rem 3.6rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-text a {
  color: #5F836E;
}

.cookie-buttons {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}

.cookie-accept {
  background-color: #5F836E;
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cookie-accept:hover {
  background-color: #4a6557;
}

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

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 0 1.8rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1.2rem;
    font-size: 0.9rem;
  }

  main {
    margin-top: 70px;
  }

  .hero {
    height: 350px;
  }

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

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

  .container {
    padding: 0 1.8rem;
  }

  section {
    padding: 2.4rem 0;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .row.reverse {
    direction: ltr;
  }

  .blog-teasers {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-accept {
    width: 100%;
  }
}
