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

:root {
  --accent-color: #5F8A70;
  --light-bg: #FAFAF9;
  --neutral-1: #333333;
  --neutral-2: #666666;
  --neutral-3: #999999;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

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

body {
  padding-top: 80px;
}

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

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

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

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

p {
  margin-bottom: 1.2rem;
  color: var(--neutral-2);
  line-height: 1.8;
}

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

a:hover {
  color: var(--neutral-1);
}

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

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-color);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-2);
  transition: color 0.3s ease;
}

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

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

.section {
  margin: 3.5rem 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

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

.grid-two-col img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.img-left {
  order: -1;
}

.content-block {
  padding: 1rem 0;
}

footer {
  background-color: var(--light-bg);
  border-top: 1px solid #E5E5E5;
  padding: 3rem 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--neutral-3);
}

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

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

.footer-section h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--neutral-1);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #E5E5E5;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--neutral-3);
  font-size: 0.85rem;
}

.disclaimer-banner {
  background-color: #F0F4F3;
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--neutral-2);
}

.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 3rem;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  padding: 3rem 2rem;
  color: var(--white);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: #4A6B58;
  color: var(--white);
  text-decoration: none;
}

.blog-teaser {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.blog-teaser h3 {
  margin-top: 0;
}

.blog-teaser p {
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 1.5rem 0;
}

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

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

.faq-answer {
  margin-top: 1rem;
  color: var(--neutral-2);
  line-height: 1.8;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral-1);
}

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

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

.breadcrumb {
  font-size: 0.9rem;
  color: var(--neutral-3);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--accent-color);
}

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

.links-block-item {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.links-block-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.links-block-item a {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

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

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  main {
    padding: 1.5rem;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

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

  .hero {
    height: 300px;
  }

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

  footer {
    padding: 2rem 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }
}
