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

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

html, body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 2.7rem;
  margin-bottom: 1.7rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

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

a {
  color: #5A7F68;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: #5A7F68;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.7rem 0;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

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

.logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 1.3rem;
  color: #5A7F68;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

nav {
  display: flex;
  gap: 3.4rem;
}

nav a {
  font-size: 0.95rem;
  color: #1a1a1a;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
  transition: border-color 0.2s;
}

nav a:hover {
  border-bottom-color: #5A7F68;
}

main {
  margin-top: 80px;
  padding: 3.4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.4rem;
  padding-right: 3.4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: center;
  margin-bottom: 3.4rem;
}

.hero-content h1 {
  margin-top: 0;
  font-size: 2.8rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e8e8e8;
}

.section {
  margin-bottom: 3.4rem;
  padding-bottom: 3.4rem;
  border-bottom: 1px solid #e8e8e8;
}

.section:last-child {
  border-bottom: none;
}

.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: start;
}

.section-image {
  order: 2;
}

.section-image.left {
  order: 1;
}

.section-image img {
  width: 100%;
  height: auto;
  border: 1px solid #e8e8e8;
}

footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e8e8e8;
  padding: 3.4rem;
  margin-top: 3.4rem;
}

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

.footer-section h3 {
  margin-top: 0;
  font-size: 1rem;
}

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

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

.footer-section a {
  font-size: 0.9rem;
  color: #666;
}

.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 2.7rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.cta-link {
  display: inline-block;
  color: #5A7F68;
  font-weight: 500;
  margin-top: 1.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.cta-link:hover {
  border-bottom-color: #5A7F68;
}

.disclaimer {
  background-color: #f8f8f8;
  border-left: 3px solid #5A7F68;
  padding: 1.7rem;
  margin-bottom: 3.4rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

.faq {
  margin-top: 3.4rem;
  margin-bottom: 3.4rem;
}

.faq-item {
  margin-bottom: 2.7rem;
}

.faq-question {
  font-weight: 500;
  color: #5A7F68;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1.7rem;
  display: none;
  color: #666;
}

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

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

.blog-card {
  border: 1px solid #e8e8e8;
  padding: 2.7rem;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.blog-card p {
  color: #666;
  font-size: 0.95rem;
}

form {
  max-width: 600px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e8e8e8;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

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

button {
  background-color: #5A7F68;
  color: white;
  border: none;
  padding: 0.8rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.9;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  margin-top: 3.4rem;
}

.info-block {
  padding: 2.7rem;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
}

.info-block h3 {
  margin-top: 0;
  font-size: 1rem;
}

.info-block p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  padding: 1.7rem 3.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  margin-right: 1.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-button {
  padding: 0.6rem 1.3rem;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.cookie-button-accept {
  background-color: #5A7F68;
  color: white;
}

.cookie-button-accept:hover {
  opacity: 0.9;
}

.cookie-button-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-button-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

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

  .header-content {
    padding: 0 1.7rem;
    flex-direction: column;
    gap: 1.3rem;
  }

  nav {
    gap: 1.7rem;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  main {
    margin-top: 180px;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

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

  .section-with-image {
    grid-template-columns: 1fr;
  }

  .section-image.left {
    order: unset;
  }

  .section-image {
    order: unset;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1.3rem;
    text-align: center;
  }

  .cookie-message {
    margin-right: 0;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}
