:root {
  --primary-color: #2D5A3D;
  --secondary-color: #4A7C59;
  --background-color: #FAFAFA;
  --footer-bg-color: #1F2937;
  --button-color: #2D5A3D;

  --section-bg-1: #FFFFFF;
  --section-bg-2: #F8F9FA;
  --section-bg-3: #FFFFFF;

  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --black: #000000;

  --header-font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  --body-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";

  --base-font-size: 16px;
  --radius-sharp: 0px;
  --radius-soft: 4px;
  --radius-strong: 8px;

  --border-thin: 1px solid #000000;
  --border-thick: 2px solid #000000;
  --shadow-light: 2px 2px 0 var(--black);
  --shadow-medium: 4px 4px 0 var(--black);
  --shadow-heavy: 6px 6px 0 var(--black);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4) 0;
  font-family: var(--header-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 var(--space-4) 0;
  color: var(--text-mid);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: color .15s ease-in-out;
}

a:hover {
  color: var(--secondary-color);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px dashed var(--primary-color);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: var(--space-16);
  background-color: var(--section-bg-1);
}

.section:nth-of-type(odd) {
  background-color: var(--section-bg-2);
}

.section:nth-of-type(3n) {
  background-color: var(--section-bg-3);
}

.section-header {
  margin-bottom: var(--space-10);
  text-align: center;
}

.section-title {
  margin-bottom: var(--space-2);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.nav {
  background-color: var(--footer-bg-color);
  border-bottom: var(--border-thick);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}

.logo {
  display: inline-block;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--secondary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-6);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border: 2px solid transparent;
}

.nav-link:hover {
  border-color: var(--primary-color);
  background-color: rgba(255,255,255,0.06);
}

.nav-toggle {
  display: none;
  background-color: var(--white);
  border: var(--border-thick);
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  box-shadow: var(--shadow-light);
  font-weight: 700;
}

.hero {
  padding-block: var(--space-20);
  background-color: var(--primary-color);
  color: var(--white);
  border-bottom: var(--border-thick);
}

.hero-inner {
  text-align: center;
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  color: var(--white);
  opacity: 0.9;
  max-width: 720px;
  margin-inline: auto;
}

.badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: var(--space-1) var(--space-3);
  border: var(--border-thick);
  box-shadow: var(--shadow-light);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background-color: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-medium);
  padding: var(--space-6);
  transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-heavy);
}

.card-title {
  margin-bottom: var(--space-2);
}

.card-text {
  color: var(--text-mid);
}

.card-actions {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: var(--border-thick);
  border-radius: var(--radius-sharp);
  transition: transform .15s ease-in-out, box-shadow .15s ease-in-out, filter .15s ease-in-out;
  box-shadow: var(--shadow-medium);
  user-select: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-light);
}

.btn-primary {
  background-color: var(--button-color);
  color: var(--white);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translate(-2px, -2px);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  filter: brightness(1.05);
  transform: translate(-2px, -2px);
}

.btn-ghost {
  background-color: var(--white);
  color: var(--text-dark);
}

.btn-ghost:hover {
  background-color: #F3F4F6;
}

.form {
  background-color: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-medium);
  padding: var(--space-8);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-4);
}

label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.input,
.textarea,
.select {
  width: 100%;
  border: var(--border-thick);
  border-radius: var(--radius-soft);
  background-color: var(--white);
  color: var(--text-dark);
  padding: var(--space-3);
  font: inherit;
  box-shadow: var(--shadow-light);
  transition: box-shadow .15s ease-in-out, border-color .15s ease-in-out, transform .15s ease-in-out;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.input::placeholder,
.textarea::placeholder {
  color: var(--text-light);
  opacity: 1;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: var(--shadow-medium);
}

.helper-text {
  margin-top: var(--space-2);
  color: var(--text-light);
  font-size: 0.9rem;
}

.alert {
  border: var(--border-thick);
  border-radius: var(--radius-soft);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-light);
}

.alert-success {
  background-color: #ECFDF5;
  border-color: #065F46;
  color: #065F46;
}

.alert-warning {
  background-color: #FFFBEB;
  border-color: #92400E;
  color: #92400E;
}

.alert-error {
  background-color: #FEF2F2;
  border-color: #991B1B;
  color: #991B1B;
}

.kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-color);
  margin-bottom: var(--space-2);
}

.figure {
  margin: 0;
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
  border: var(--border-thick);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-medium);
}

.quote {
  border-left: var(--border-thick);
  border-color: var(--primary-color);
  padding-left: var(--space-4);
  margin: var(--space-4) 0;
  font-size: 1.15rem;
  color: var(--text-mid);
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--white);
  border-top: var(--border-thick);
  padding-block: var(--space-12);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand {
  grid-column: span 2;
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer p {
  color: #E5E7EB;
}

.footer a {
  color: var(--white);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: var(--border-thick);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: #D1D5DB;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: #D1D5DB;
}

.footer-bottom a:hover {
  color: var(--white);
}

hr {
  border: none;
  border-top: var(--border-thin);
  margin: var(--space-8) 0;
}

.small {
  font-size: 0.875rem;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 480px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 2rem; }
  .section { padding-block: var(--space-12); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}