@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..146,100..900;1,9..146,100..900&display=swap');

:root {
  --accent-color: #647B5E;
  --neutral-light: #F8F6F1;
  --neutral-medium: #E8E6E1;
  --neutral-dark: #333333;
  --white: #FFFFFF;
  --text-primary: #2C2C2C;
  --border-color: #D4D0C8;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
  margin-top: 2.4rem;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.4rem;
}

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

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

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--accent-color);
  font-weight: 400;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.4rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.section {
  padding: 3.4rem 0;
}

.section-light {
  background-color: var(--neutral-light);
}

.hero {
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-medium) 100%);
  padding: 3rem 1.6rem;
  margin-top: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-primary);
  opacity: 0.9;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: start;
  margin: 2.4rem 0;
}

.content-grid-item {
  padding: 1.6rem;
}

.content-grid-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 1.6rem 0;
}

.img-left {
  float: left;
  margin-right: 2.4rem;
  margin-bottom: 1.6rem;
  max-width: 400px;
}

.img-right {
  float: right;
  margin-left: 2.4rem;
  margin-bottom: 1.6rem;
  max-width: 400px;
}

.img-left img,
.img-right img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

footer {
  background-color: var(--neutral-light);
  border-top: 1px solid var(--border-color);
  padding: 3.4rem 1.6rem;
  margin-top: 3.4rem;
}

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

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

.footer-section h4 {
  margin-bottom: 1.2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.footer-links a {
  color: var(--text-primary);
}

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

.footer-contact p {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}

.disclaimer-banner {
  background-color: var(--neutral-light);
  padding: 1.6rem;
  border-radius: 4px;
  margin: 2.4rem 0;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-color);
  text-decoration: none;
}

.cta-text {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 0.2rem;
}

.cta-text:hover {
  text-decoration: none;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.6rem;
  background-color: var(--neutral-light);
  border-radius: 4px;
}

.faq-question {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  display: none;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.4rem;
  margin: 2.4rem 0;
}

.blog-card {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

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

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

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background-color: var(--white);
}

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

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

.btn-submit {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

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

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

  .logo {
    font-size: 1.3rem;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

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

  .img-left,
  .img-right {
    float: none;
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 1.6rem;
  }

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

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

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

  .cookie-btn {
    width: 100%;
  }

  main {
    margin-top: 70px;
  }
}
