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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f1eb;
  color: #2d2d2d;
  font-size: 1.07rem;
  line-height: 1.66;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: #556B2F;
  text-decoration: none;
  transition: color 0.26s ease;
}

.logo:hover {
  color: #3d4820;
}

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

nav a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 0.95rem;
  transition: color 0.26s ease;
}

nav a:hover {
  color: #556B2F;
}

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

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

h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2.05rem;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
}

h3 {
  font-size: 1.4rem;
  color: #2d2d2d;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

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

a {
  color: #556B2F;
  text-decoration: underline;
  transition: color 0.26s ease;
}

a:hover {
  color: #3d4820;
}

.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.section {
  margin-bottom: 4rem;
}

.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-text {
  padding-right: 2rem;
}

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

.grid-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.26s ease;
}

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

.image-right {
  order: 2;
}

.text-right {
  order: 1;
}

.image-left {
  order: 1;
}

.text-left {
  order: 2;
}

.faq-container {
  margin-top: 2rem;
}

.faq-item {
  background-color: #ffffff;
  border-left: 4px solid #556B2F;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-item p {
  margin: 0;
}

.cta-section {
  background-color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  background-color: #556B2F;
  color: #ffffff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.26s ease, transform 0.26s ease;
}

.cta-button:hover {
  background-color: #3d4820;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
}

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

.blog-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

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

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

.blog-card-content h3 {
  margin-top: 0;
}

.blog-card-link {
  display: inline-block;
  background-color: #556B2F;
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background-color 0.26s ease;
  margin-top: 0.5rem;
}

.blog-card-link:hover {
  background-color: #3d4820;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d2d2d;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.26s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #556B2F;
  box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1);
}

.form-submit {
  background-color: #556B2F;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.26s ease;
}

.form-submit:hover {
  background-color: #3d4820;
}

footer {
  background-color: #2d2d2d;
  color: #e8e8e8;
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: #f5f1eb;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.26s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: #f5f1eb;
}

.footer-section p {
  color: #bbb;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.disclaimer {
  background-color: #fff9f5;
  border-left: 4px solid #556B2F;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: #2d2d2d;
}

.cookie-button {
  background-color: #556B2F;
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.26s ease;
  white-space: nowrap;
}

.cookie-button:hover {
  background-color: #3d4820;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
    justify-content: center;
  }

  nav a {
    font-size: 0.85rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .grid-text {
    padding-right: 0;
  }

  .image-right,
  .image-left {
    order: 0 !important;
  }

  .text-right,
  .text-left {
    order: 0 !important;
  }

  .hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }

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

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

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