:root {
  --primary: #2d8c72;
  --primary-dark: #1f5d4c;
  --bg: #f3f8f6;
  --text: #10221d;
  --muted: #3f5d54;
  --card: #ffffff;
  --contrast: #0f2f27;
  --light: #e8f3ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #d6e7e2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--contrast);
}

.logo-wrap img {
  width: 42px;
  height: 42px;
}

.legal-bar {
  background: #0f2f27;
  color: #d8f5ec;
  font-size: 0.86rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #2d8c72;
}

.legal-bar p {
  margin: 0;
}

.legal-bar a {
  color: #f5b343;
}

.cookie-manage-link {
  background: none;
  border: none;
  padding: 0;
  color: #dcfff3;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.cookie-banner a {
  color: var(--primary-dark);
  font-weight: 600;
}

.cookie-actions .btn-reject {
  background: #ffffff;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary-dark);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: #f5fffb;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 47, 39, 0.82), rgba(45, 140, 114, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 4.5rem 0;
}

h1,
h2,
h3 {
  color: var(--contrast);
  line-height: 1.25;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 700px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.section {
  padding: 3.2rem 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: var(--contrast);
  color: #e8fff6;
}

.section.dark h2,
.section.dark h3,
.section.dark a {
  color: #f1fff9;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.section.dark .lead {
  color: #d0ece3;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  background: var(--card);
  border: 1px solid #d9ebe5;
  border-radius: 14px;
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(21, 68, 56, 0.14);
  border-color: #8ec5b4;
}

.section.dark .card {
  background: #123b31;
  border-color: #2f6759;
}

.section.dark .card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  border-color: #f5b343;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.interactive-card {
  position: relative;
  overflow: hidden;
}

.interactive-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d8c72, #f5b343);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.interactive-card:hover::after {
  transform: scaleX(1);
}

.interactive-note {
  border: 1px dashed #9ccfc0;
  background: #f8fcfa;
  border-radius: 12px;
  padding: 0.9rem;
}

.section.dark .interactive-note {
  background: #1a4b3f;
  border-color: #f5b343;
  color: #f2fff9;
}

.media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d9ebe5;
}

.icon {
  font-size: 1.6rem;
  color: #f5b343;
}

ul {
  padding-left: 1.15rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 0.9rem;
}

.section.dark .timeline-item {
  background: #1a4b3f;
  border-left-color: #f5b343;
  color: #f2fff9;
}

.faq-item {
  border: 1px solid #c9e1d9;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: #f6fbf9;
  border: none;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--contrast);
}

.faq-answer {
  display: none;
  padding: 0.9rem 1rem;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #bad8ce;
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.checkbox-line input[type="checkbox"] {
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.site-footer {
  background: #0a201a;
  color: #d3ece4;
  padding: 2.3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.site-footer a {
  color: #dcfff3;
}

.site-footer h3 {
  color: #f1fff9;
}

.footer-bottom {
  border-top: 1px solid #29443d;
  margin-top: 1rem;
  padding-top: 0.8rem;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: #ffffff;
  border: 1px solid #cfe6de;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-inner {
  background: #ffffff;
  border-radius: 12px;
  width: min(650px, 100%);
  padding: 1rem;
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #e5f0ec;
}

.switch {
  position: relative;
  width: 45px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #bccac5;
  border-radius: 999px;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.25s;
}

.switch input:checked + .slider {
  background: var(--primary);
}

.switch input:checked + .slider::before {
  transform: translateX(21px);
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid,
  .interactive-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #ffffff;
    border-bottom: 1px solid #d6e7e2;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 4%;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 62vh;
  }

  .hero-content {
    padding: 2.8rem 0;
  }

  .btn {
    width: 100%;
  }
}
