:root {
  --color-primary: #8c8a84;
  --color-text: #333333;
  --color-bg: #ffffff;
  --color-light: #f5f5f0;
  --color-border: #e0e0d8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text);
}

h1 {
  font-size: 2rem;
}

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

h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  max-width: 70ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

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

.nav-link {
  color: var(--color-text);
  padding: 0.5rem 1rem;
  display: inline-block;
}

main {
  margin-top: 70px;
}

.section {
  padding: 3rem 0;
}

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

.hero {
  padding: 4rem 0;
  background-color: var(--color-light);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.content-image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.content-image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.disclaimer-box {
  background-color: var(--color-light);
  border-left: 3px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

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

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

.cta-box {
  background-color: var(--color-light);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 4px;
}

.cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 4px;
  margin-top: 1rem;
  text-decoration: none;
}

.cta-link:hover {
  background-color: #79776f;
  text-decoration: none;
}

.contact-form {
  max-width: 500px;
  margin: 2rem 0;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.btn-submit {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #79776f;
}

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

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

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

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

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

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

.footer-message {
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
  margin-bottom: 1rem;
  max-width: none;
}

.cookie-banner button {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  
  .section {
    padding: 2rem 0;
  }
}
