:root {
  --primary-color: #5c8a74;
  --bg-light: #faf9f7;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e8e6e3;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

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

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}

main {
  margin-top: 80px;
}

.hero {
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 4rem;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 700px;
  border-radius: 2px;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
}

section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.section-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}

.section-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.btn-read-more {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-size: 16px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-read-more:hover {
  background-color: #4a6f5d;
  color: #ffffff;
  opacity: 1;
}

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

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

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  font-size: 16px;
  font-family: inherit;
  background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--text-light);
  font-size: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 14px;
}

.disclaimer-box {
  background-color: #f5f5f3;
  border-left: 3px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.disclaimer-box h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  font-size: 15px;
  margin-bottom: 0.75rem;
}

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

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

.cookie-banner-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
  color: var(--text-dark);
  flex: 1;
  min-width: 250px;
  margin-bottom: 1rem;
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #4a6f5d;
}

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

  h2 {
    font-size: 1.65rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 400px;
  }

  .section-image.float-left,
  .section-image.float-right {
    float: none;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero-overlay {
    padding: 2rem 1.5rem;
  }
}
