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

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

:root {
  --primary-color: #587C6C;
  --bg-color: #FAFBF8;
  --text-color: #2C3E3F;
  --light-gray: #E8EAE5;
  --border-color: #D4D8CF;
}

html, body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

header .logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

header nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

body {
  padding-top: 70px;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(88, 124, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.2;
}

h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

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

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

.col {
  padding: 0;
}

.image-left {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}

.image-right {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  margin-left: auto;
}

section {
  margin-bottom: 3rem;
}

.section-content {
  padding: 2rem 0;
}

.disclaimer {
  background-color: #F5F7F3;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: #4A6957;
}

footer {
  background-color: #F5F7F3;
  border-top: 1px solid var(--light-gray);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer-section a {
  display: block;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq {
  margin-top: 2rem;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--light-gray);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 3px;
}

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

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

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

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

.blog-card {
  background-color: white;
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

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

form {
  background-color: white;
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid var(--light-gray);
}

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

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  background-color: #FAFBF8;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
}

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

button[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #4A6957;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--light-gray);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-accept,
.cookie-decline {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #4A6957;
}

.cookie-decline {
  background-color: var(--light-gray);
  color: var(--text-color);
}

.cookie-decline:hover {
  background-color: var(--border-color);
}

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

  header nav {
    gap: 1rem;
  }

  header nav a {
    font-size: 0.85rem;
  }

  main {
    padding: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .hero {
    height: 250px;
    margin-bottom: 2rem;
  }

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

  .image-left,
  .image-right {
    max-width: 100%;
    margin-left: 0;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-accept,
  .cookie-decline {
    width: 100%;
    text-align: center;
  }
}
