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

body {
  font-family: system-ui, Arial, Verdana, sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  background-color: #f5f3f0;
  color: #333;
}

h1 {
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-top: 2rem;
}

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

p {
  margin-bottom: 1.2rem;
  color: #555;
}

a {
  color: #6B8E23;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #556b1f;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #e0d7ce;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6B8E23;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo a {
  color: #6B8E23;
}

.logo a:hover {
  color: #556b1f;
}

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

nav a {
  font-weight: 500;
  color: #555;
}

nav a:hover {
  color: #6B8E23;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(135deg, #e8e5df 0%, #f5f3f0 100%);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.section {
  margin-bottom: 3rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

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

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  border-left: 4px solid #6B8E23;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  margin-top: 0;
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #6B8E23;
}

.faq-item h4 {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2c2c2c;
}

.cta-button {
  display: inline-block;
  background-color: #6B8E23;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #556b1f;
  color: #fff;
}

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

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

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

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

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

.blog-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6B8E23;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

footer {
  background-color: #2c2c2c;
  color: #e0d7ce;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

footer h3 {
  color: #6B8E23;
  margin-bottom: 1.5rem;
}

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

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h4 {
  color: #6B8E23;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #e0d7ce;
}

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

.footer-contact {
  margin-bottom: 2rem;
  text-align: center;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #e0d7ce;
}

.footer-disclaimer {
  background-color: rgba(107, 142, 35, 0.1);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.footer-disclaimer p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.disclaimer-box {
  background-color: #f0ebe5;
  border-left: 4px solid #6B8E23;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-box h4 {
  color: #6B8E23;
  margin-bottom: 0.8rem;
}

.disclaimer-box p {
  color: #555;
}

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

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

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

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

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cookie-accept {
  background-color: #6B8E23;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-accept:hover {
  background-color: #556b1f;
}

.cookie-decline {
  background-color: transparent;
  color: #e0d7ce;
  border: 1px solid #e0d7ce;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-decline:hover {
  background-color: #444;
  border-color: #6B8E23;
  color: #6B8E23;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #6B8E23;
  margin: 0 0.3rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

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

  main {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  .section-content.reverse {
    direction: ltr;
  }

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

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

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