:root {
  --primary-color: #4CAF50;
  --secondary-color: #8BC34A;
  --accent-yellow: #FFEB3B;
  --accent-brown: #795548;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --border-light: #e0e0e0;
}

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

html, body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  color: var(--accent-brown);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--accent-brown);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 2px solid var(--primary-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234CAF50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-size: 0.95rem;
}

footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.8;
}

footer a:hover {
  color: var(--accent-yellow);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

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

section {
  padding: 5rem 0;
}

section.hero {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
  padding: 6rem 0;
}

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

.row-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.col-text {
  flex: 1;
  min-width: 0;
}

.col-image {
  flex: 1;
  min-width: 0;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: block;
  max-width: 500px;
}

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

.card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 80, 0.12);
  transform: translateY(-4px);
  border-color: var(--secondary-color);
}

.card h3 {
  color: var(--accent-brown);
  margin-bottom: 1rem;
}

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

.card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-light);
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.faq-item h4 {
  color: var(--accent-brown);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
}

.btn-custom {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-custom:hover {
  background-color: var(--secondary-color);
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.btn-secondary {
  background-color: var(--accent-brown);
}

.btn-secondary:hover {
  background-color: #6d4c41;
}

.disclaimer {
  background-color: #fff3e0;
  border-left: 4px solid var(--accent-yellow);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.disclaimer strong {
  color: var(--accent-brown);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  color: #ffffff;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: var(--secondary-color);
}

.cookie-decline {
  background-color: #666666;
  color: #ffffff;
}

.cookie-decline:hover {
  background-color: #555555;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
}

.cookie-learn:hover {
  background-color: rgba(255, 235, 59, 0.1);
}

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

.breadcrumb-section {
  background-color: var(--bg-light);
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 0.5rem;
}

.image-section {
  text-align: center;
  margin: 2rem 0;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 400px;
}

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

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

@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .three-column {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .row-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .col-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container-wide {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  section {
    padding: 2rem 0;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

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

  .three-column {
    grid-template-columns: 1fr;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner p {
    margin-bottom: 1rem;
  }

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

  .cookie-buttons button {
    flex: 1;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container-wide {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  .two-column {
    gap: 1.5rem;
  }

  .image-section img {
    max-height: 300px;
  }
}
