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

:root {
  --primary-color: #3A7A5F;
  --light-bg: #F5F9F8;
  --light-blue: #E8F1EF;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --border-color: #D0D8DC;
  --white: #FFFFFF;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  letter-spacing: 0.3px;
}

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

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

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

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

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

main {
  margin-top: 80px;
  padding-top: 2rem;
}

.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(58, 122, 95, 0.7) 0%, rgba(232, 241, 239, 0.5) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 122, 95, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  color: var(--light-bg);
  margin-bottom: 0;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.row {
  display: flex;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 1;
  min-width: 300px;
}

.row img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(58, 122, 95, 0.1);
}

.faq-item {
  background-color: var(--light-bg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 2px;
}

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

.faq-item p {
  margin-bottom: 0;
}

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

.blog-card {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(58, 122, 95, 0.15);
}

.blog-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

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

.blog-card a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 2px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}

.cta:hover {
  opacity: 0.9;
  text-decoration: none;
  background-color: var(--primary-color);
}

.disclaimer {
  background-color: #FFF3CD;
  border: 1px solid #FFE69C;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #856404;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem 0;
  margin-top: 4rem;
}

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

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

.footer-section a,
.footer-section p {
  color: #B0BEC5;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #90A4AE;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 122, 95, 0.1);
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.9;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 2rem 0;
}

.soft-cta {
  background: linear-gradient(135deg, rgba(58, 122, 95, 0.05) 0%, rgba(232, 241, 239, 0.3) 100%);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  margin: 2rem 0;
}

.soft-cta p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

  h2 {
    font-size: 1.4rem;
  }

  .navbar-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .row {
    gap: 1rem;
  }

  .col-md-6 {
    min-width: 100%;
  }

  .section {
    padding: 2rem 0;
  }

  main {
    margin-top: 70px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  border-top: 2px solid var(--primary-color);
  z-index: 999;
  display: none;
}

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

.cookie-content {
  flex: 1;
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--primary-color);
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

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

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner.show {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
