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

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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  color: #222;
}

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

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 3.4rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
  line-height: 1.8;
}

a {
  color: #5C7A66;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3d5248;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
}

.logo {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #5C7A66;
  cursor: pointer;
}

.logo a {
  color: #5C7A66;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

nav a {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #5C7A66;
}

main {
  margin-top: 70px;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  min-height: calc(100vh - 70px);
}

footer {
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
  padding: 3.4rem 1.6rem 1.6rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

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

footer a {
  color: #5C7A66;
}

footer a:hover {
  color: #3d5248;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #222;
  margin-top: 0;
}

.footer-section p, .footer-section ul {
  margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1.6rem;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: start;
}

.row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.row img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.6rem;
}

.hero {
  position: relative;
  background-color: #fafafa;
  padding: 3.4rem 0;
  margin-bottom: 3.4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-text h1 {
  margin-top: 0;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

section {
  margin-bottom: 3.4rem;
}

.section-title {
  margin-bottom: 2.4rem;
}

.cta {
  display: inline-block;
  color: #5C7A66;
  font-weight: 500;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.cta:hover {
  color: #3d5248;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #eee;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.blog-card {
  background-color: #fafafa;
  padding: 1.6rem;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
}

.blog-card:hover {
  border-color: #5C7A66;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5C7A66;
}

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

button {
  background-color: #5C7A66;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0;
}

button:hover {
  background-color: #3d5248;
}

.disclaimer {
  background-color: #f0f5f3;
  padding: 1.6rem;
  border-left: 4px solid #5C7A66;
  margin: 2.4rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.disclaimer p {
  margin-bottom: 0.8rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.4rem;
  color: #5C7A66;
  vertical-align: middle;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1.2rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .row.two-col {
    grid-template-columns: 1fr;
  }

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 1.6rem;
  text-align: center;
  z-index: 999;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

#cookie-banner button {
  background-color: #5C7A66;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  margin: 0 0.4rem;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

#cookie-banner button:hover {
  background-color: #3d5248;
}

#cookie-banner a {
  color: #5C7A66;
}
