:root {
  --primary-color: #689F38;
  --bg-light: #FAFAF8;
  --bg-white: #FFFFFF;
  --text-primary: #333333;
  --text-secondary: #666666;
  --border-color: #E8E8E6;
  --shadow-light: 0 5px 14px rgba(0, 0, 0, 0.06);
  --radius-default: 9px;
}

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

html, body {
  font-family: 'Karla', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
}

body {
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 1.5rem 0 1rem;
}

h1 {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a8a30;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  padding: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  max-width: 100%;
}

.logo {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: #5a8a30;
  text-decoration: none;
}

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

nav a {
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #f5f5f3 0%, #e8e8e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section {
  padding: 3rem 0;
  background: var(--bg-white);
  margin-bottom: 2rem;
  border-radius: var(--radius-default);
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

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

.card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-default);
  margin-bottom: 1.5rem;
  max-height: 400px;
}

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

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-default);
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #5a8a30;
  color: white;
  text-decoration: none;
}

.disclaimer {
  background: #f0f4e8;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: var(--radius-default);
  margin: 2rem 0;
  font-size: 14px;
  color: var(--text-secondary);
}

footer {
  background: var(--text-primary);
  color: #f0f0f0;
  padding: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

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

footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}

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

footer .footer-section h4 {
  font-size: 16px;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

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

footer .footer-section ul li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

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

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

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

.faq-question {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 0.8rem;
  cursor: pointer;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 16px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  resize: vertical;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(104, 159, 56, 0.1);
}

textarea {
  min-height: 120px;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid var(--primary-color);
  color: #2e7d32;
  padding: 1rem;
  border-radius: var(--radius-default);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: #f0f0f0;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-accept,
.cookie-decline {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--radius-default);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: #5a8a30;
}

.cookie-decline {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}

.cookie-decline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  .container {
    padding: 0 1.5rem;
  }

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

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

  .hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

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