@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #5E8C61;
  --primary-light: #A8D5A8;
  --neutral-dark: #2C2C2C;
  --neutral-light: #F5F5F5;
  --neutral-pale: #FAFAFA;
  --accent-green: #5E8C61;
  --border-color: #E0E0E0;
  --text-primary: #333333;
  --text-secondary: #666666;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--neutral-pale);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

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

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

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

a:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 1rem 2rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

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

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

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

main {
  margin-top: 80px;
}

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

.section-padding {
  padding: 4rem 2rem;
}

.section-spacing {
  margin-bottom: 3rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(94, 140, 97, 0.05) 0%, rgba(168, 213, 168, 0.05) 100%);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 80px;
}

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

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-image {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.grid-2col img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  max-width: 90%;
}

.grid-2col-reverse {
  grid-template-columns: 1fr 1fr;
}

.grid-2col-reverse .image-container {
  order: 2;
}

.grid-2col-reverse .content-container {
  order: 1;
}

.content-block {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.content-block h3 {
  color: var(--primary-color);
}

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

.cta-block {
  background: linear-gradient(135deg, rgba(94, 140, 97, 0.08) 0%, rgba(168, 213, 168, 0.08) 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-block a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-block a:hover {
  background-color: #4A6F4B;
  transform: translateY(-2px);
  text-decoration: none;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--primary-color);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  font-size: 0.95rem;
}

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

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.footer-section a {
  color: #CCCCCC;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact {
  color: #CCCCCC;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
  color: #AAAAAA;
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.blog-card-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blog-card-content a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.blog-card-content a:hover {
  background-color: #4A6F4B;
  text-decoration: none;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

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

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

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(94, 140, 97, 0.1);
}

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

button {
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

button:hover {
  background-color: #4A6F4B;
  transform: translateY(-2px);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-secondary);
}

.policy-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  z-index: 9999;
  max-width: 500px;
  font-size: 0.95rem;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.cookie-consent-buttons button {
  flex: 1;
  min-width: 100px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

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

.cookie-consent-buttons .accept:hover {
  background-color: #4A6F4B;
}

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

  .header-container {
    padding: 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.95rem;
  }

  main {
    margin-top: 70px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-2col-reverse .image-container {
    order: unset;
  }

  .grid-2col-reverse .content-container {
    order: unset;
  }

  .hero-section {
    padding: 2rem 1rem;
    margin-top: 70px;
  }

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

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

  .section-padding {
    padding: 2rem 1rem;
  }

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

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-consent-buttons {
    flex-direction: column;
  }

  .cookie-consent-buttons button {
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  form {
    margin: 0;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  .nav-menu {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .section-padding {
    padding: 1.5rem;
  }

  .content-block {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .cta-block {
    padding: 2rem 1rem;
  }
}
