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

body {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9f3 100%);
  overflow-x: hidden;
}

h1 {
  font-size: 46px;
  font-weight: 600;
  color: #689F38;
  margin-bottom: 24px;
  line-height: 1.3;
}

h2 {
  font-size: 34px;
  font-weight: 500;
  color: #689F38;
  margin-bottom: 20px;
  line-height: 1.4;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: #558B2F;
  margin-bottom: 16px;
  line-height: 1.5;
}

p {
  margin-bottom: 16px;
}

a {
  color: #689F38;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #558B2F;
  text-decoration: none;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(104, 159, 56, 0.1);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  font-size: 28px;
  font-weight: 600;
  color: #689F38;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
}

.nav-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #689F38;
}

.hero-section {
  padding: 140px 32px 80px;
  background: linear-gradient(135deg, #f8f9f3 0%, #ffffff 100%);
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 24px;
}

.hero-section .lead {
  font-size: 22px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-image {
  max-width: 700px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(104, 159, 56, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-light {
  background: #ffffff;
}

.section-cream {
  background: #f8f9f3;
}

.content-with-image {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.content-with-image img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(104, 159, 56, 0.12);
  flex-shrink: 0;
}

.content-with-image.image-left {
  flex-direction: row;
}

.content-with-image.image-right {
  flex-direction: row-reverse;
}

.content-with-image .text-content {
  flex: 1;
}

.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #689F38;
}

.info-card h3 {
  margin-top: 0;
}

.disclaimer-box {
  background: #fff9e6;
  border: 2px solid #f5d76e;
  border-radius: 12px;
  padding: 24px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: #d4a006;
  margin-top: 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #689F38;
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-section {
  background: linear-gradient(135deg, #689F38 0%, #558B2F 100%);
  color: #ffffff;
  padding: 60px 32px;
  text-align: center;
  border-radius: 16px;
  margin: 40px 0;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.btn-light {
  background: #ffffff;
  color: #689F38;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-light:hover {
  background: #f8f9f3;
  color: #558B2F;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(104, 159, 56, 0.12);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #689F38;
}

.btn-primary {
  background: #689F38;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-primary:hover {
  background: #558B2F;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(104, 159, 56, 0.3);
}

.footer {
  background: #2d3e1f;
  color: #ffffff;
  padding: 60px 32px 24px;
}

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

.footer h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.6;
}

.footer a:hover {
  color: #ffffff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  color: #d0d0d0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 62, 31, 0.98);
  color: #ffffff;
  padding: 24px 32px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(8px);
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 16px;
}

.cookie-banner button {
  background: #689F38;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cookie-banner button:hover {
  background: #558B2F;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  body {
    font-size: 16px;
  }

  .header .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 16px;
  }

  .hero-section {
    padding: 120px 16px 60px;
  }

  .hero-section .lead {
    font-size: 18px;
  }

  .content-with-image {
    flex-direction: column !important;
  }

  .content-with-image img {
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }

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

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.policy-content h2 {
  margin-top: 40px;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content ul,
.policy-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 8px;
}
