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

:root {
  --primary-green: #7BA05B;
  --warm-linen: #FAF0E6;
  --soft-slate: #6E7783;
  --gentle-sunrise: #F4C430;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --light-gray: #f5f5f5;
  --border-gray: #e0e0e0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.88;
  color: var(--black);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Georgia', serif;
  font-weight: 400;
  color: var(--black);
}

h1 {
  font-size: 5.1rem;
  line-height: 1.2;
  margin: 1rem 0;
  position: relative;
  padding-bottom: 1rem;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-green);
}

h2 {
  font-size: 2.35rem;
  font-style: italic;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
}

h3 {
  font-size: 1.75rem;
  margin: 1.5rem 0 0.75rem 0;
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 1.88;
}

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

a:hover {
  color: var(--soft-slate);
}

button {
  font-family: 'Karla', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 50px;
  background-color: var(--primary-green);
  color: var(--white);
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(123, 160, 91, 0.2);
}

button:hover {
  transform: scale(1.05);
  background-color: var(--soft-slate);
  box-shadow: 0 6px 16px rgba(123, 160, 91, 0.3);
}

button.btn-secondary {
  background-color: var(--soft-slate);
}

button.btn-secondary:hover {
  background-color: var(--primary-green);
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-green);
}

body {
  padding-top: 70px;
}

main {
  width: 100%;
}

.hero {
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-linen) 0%, rgba(123, 160, 91, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0 0 1rem 0;
}

.hero p {
  font-size: 1.25rem;
  color: var(--soft-slate);
  margin-bottom: 2rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.section.full-width {
  padding: 0;
}

.section-bg-light {
  background-color: var(--warm-linen);
}

.section-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.section-text {
  flex: 1;
  min-width: 0;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0.95;
}

.disclaimer-box {
  background-color: #f0f5f0;
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--primary-green);
  margin-top: 0;
}

.disclaimer-box p {
  color: var(--soft-slate);
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.card {
  background-color: var(--white);
  border: 2px solid var(--primary-green);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(123, 160, 91, 0.15);
}

.card h3 {
  margin-top: 0;
  color: var(--primary-green);
}

.card p {
  color: var(--soft-slate);
  margin-bottom: 1rem;
}

.card a {
  display: inline-block;
  color: var(--primary-green);
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card a:hover {
  border-bottom-color: var(--primary-green);
}

.faq-item {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.faq-item h4 {
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--soft-slate);
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: 'Karla', 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(123, 160, 91, 0.1);
}

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

.form-disclaimer {
  background-color: #fff8e1;
  border-left: 4px solid var(--gentle-sunrise);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--soft-slate);
}

footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

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

footer h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

footer a {
  color: var(--primary-green);
}

footer a:hover {
  color: var(--white);
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

.educational-notice {
  background-color: rgba(123, 160, 91, 0.1);
  border: 2px solid var(--primary-green);
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-green);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

#cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons button.accept {
  background-color: var(--primary-green);
}

.cookie-buttons button.reject {
  background-color: transparent;
  color: var(--white);
}

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

.cookie-buttons button.learn-more {
  background-color: transparent;
  color: var(--primary-green);
}

.cookie-buttons button.learn-more:hover {
  background-color: rgba(123, 160, 91, 0.1);
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    height: auto;
    min-height: 60vh;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .section-content {
    flex-direction: column;
    gap: 2rem;
  }

  .section-text,
  .section-image {
    flex: 1 1 100%;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  #cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: 2rem 0;
  }

  nav ul {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.9rem;
  }
}
