:root {
  --color-primary: #DDEBF5;
  --color-accent-green: #3B5E40;
  --color-accent-taupe: #BFA98A;
  --color-text-dark: #4D4D4D;
  --color-white: #FFFFFF;
  --color-light-gray: #F8F9FA;
  --spacing-unit: 1rem;
  --transition-smooth: 0.6s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir', 'Futura', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.82;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInScale 0.6s ease-out;
}

h1 {
  font-size: 3.5rem;
  color: var(--color-accent-green);
}

h2 {
  font-size: 2.5rem;
  color: var(--color-accent-green);
}

h3 {
  font-size: 1.75rem;
  color: var(--color-accent-green);
  font-weight: 700;
  font-style: italic;
}

h4 {
  font-size: 1.35rem;
  color: var(--color-text-dark);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

a {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  border-bottom-color: var(--color-accent-taupe);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container-wide {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 calc(4vw + 1rem);
}

.section {
  padding: 70px 0;
  animation: fadeIn 0.8s ease-out;
}

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

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

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1rem 0;
}

.header-fixed nav a {
  margin: 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.header-fixed nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-taupe), var(--color-accent-green));
  transition: width 0.3s ease;
}

.header-fixed nav a:hover::after {
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-accent-green);
  text-decoration: none;
  display: inline-block;
}

.logo:hover {
  border-bottom: none;
}

body {
  padding-top: 80px;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInScale 0.8s ease-out;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 4rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--color-white);
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent-green);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(59, 94, 64, 0.3);
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.button:hover {
  background-color: var(--color-accent-taupe);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(191, 169, 138, 0.4);
}

.button:active::before {
  width: 300px;
  height: 300px;
}

.card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  animation: fadeInScale 0.6s ease-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(59, 94, 64, 0.15);
  background-color: var(--color-primary);
}

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

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

.grid-img-text {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.grid-img-text.reverse {
  flex-direction: row-reverse;
}

.grid-img-text img {
  max-width: 45%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.grid-img-text .text-content {
  flex: 1;
}

.grid-img-text .overlap-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  width: 60%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: var(--color-accent-green);
  color: var(--color-white);
}

table th, table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}

table tbody tr:hover {
  background-color: var(--color-primary);
}

.footer {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  padding: 3rem 0;
  margin-top: 3rem;
  font-size: 0.95rem;
}

.footer a {
  color: var(--color-accent-taupe);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-accent-taupe);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

.disclaimer-banner {
  background-color: var(--color-light-gray);
  border-left: 4px solid var(--color-accent-taupe);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-style: italic;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-accent-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-accent-green);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--color-white);
}

.cookie-banner a {
  color: var(--color-accent-taupe);
}

.cookie-banner button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

.thank-you-container {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E0E0E0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--color-accent-green);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item h4:hover {
  color: var(--color-accent-taupe);
}

.faq-item p {
  display: none;
  color: var(--color-text-dark);
}

.faq-item.active p {
  display: block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-img-text {
    flex-direction: column !important;
  }

  .grid-img-text img {
    max-width: 100%;
  }

  .grid-img-text .overlap-text {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

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

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

  .hero-content p {
    font-size: 1.1rem;
  }

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

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

  .header-fixed nav a {
    margin: 0 0.75rem;
    font-size: 0.9rem;
  }

  .container-wide {
    padding: 0 calc(4vw);
  }
}
