@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&family=Source+Serif+Pro:wght@400;600;700&display=swap');

:root {
  --accent-color: #6C8B5F;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --bg-light: #f9f7f4;
  --bg-white: #ffffff;
  --border-light: #e8e6e1;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif Pro', serif;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  margin-top: 2rem;
}

h2 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

a:hover {
  opacity: 0.8;
}

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

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Source Serif Pro', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  cursor: pointer;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.section {
  padding: 4rem 2rem;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-section {
  background-color: var(--bg-light);
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 0;
}

.hero-section h1 {
  margin-bottom: 1rem;
  margin-top: 0;
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
  text-decoration: none;
}

.cta-button:hover {
  opacity: 0.85;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  text-decoration: none;
}

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

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.blog-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

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

.faq-item {
  background-color: var(--bg-light);
  margin-bottom: 1.5rem;
  border-radius: 4px;
  padding: 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

form {
  max-width: 600px;
}

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

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

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(108, 139, 95, 0.1);
}

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

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

.submit-button:hover {
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

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

.cookie-accept:hover {
  opacity: 0.85;
}

.cookie-decline {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-decline:hover {
  opacity: 0.9;
}

.image-float-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.image-float-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .image-float-left, .image-float-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem auto;
    display: block;
  }
}

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

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

.contact-info strong {
  color: var(--accent-color);
}
