:root {
  --primary-color: #a3be8c;
  --primary-dark: #7a9a6a;
  --accent-color: #d4a574;
  --text-dark: #2e3440;
  --text-light: #4c566a;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
}

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

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

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

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

header .logo:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-home {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-home:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  text-decoration: none;
}

main {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
  padding: 5rem 0;
  position: relative;
}

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

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--bg-light);
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section ul li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.info-disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.info-disclaimer p {
  color: #856404;
  margin-bottom: 0.5rem;
}

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

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

.faq-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.btn-cta {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.btn-cta:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.cookie-banner .btn:hover {
  background-color: var(--primary-dark);
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem;
}

footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

footer p, footer a {
  color: #d8dee9;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s;
}

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

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(163, 190, 140, 0.1);
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section h2 {
    font-size: 1.75rem;
  }
  
  .section h3 {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}
