:root {
  --primary-green: #22c55e;
  --primary-dark: #1f2937;
  --light-gray: #f3f4f6;
  --lighter-gray: #f9fafb;
  --pure-white: #ffffff;
  --solid-black: #000000;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-width: 2px;
  --border-radius: 4px;
  --shadow-offset: 4px;
  --transition-speed: 0.2s;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--pure-white);
  margin: 0;
  padding: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Bold and Graphic */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
}

h3 {
  font-size: 2.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.875rem;
  font-weight: 600;
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

h6 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

a:hover {
  text-decoration: underline;
}

/* Layout and Containers - Full Width Approach */
.container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  margin: 0 !important;
}

.container-fluid {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* Section Styling with High Contrast */
.section {
  padding: 4rem 0;
  width: 100%;
  border-bottom: var(--border-width) solid var(--solid-black);
}

.section-white {
  background: var(--pure-white);
}

.section-light {
  background: var(--lighter-gray);
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--pure-white);
}

/* Neo-Brutalism Cards */
.card {
  background: var(--pure-white);
  border: var(--border-width) solid var(--solid-black);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--solid-black);
  transition: all var(--transition-speed) ease;
  display: block;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--solid-black);
}

.card-elevated {
  box-shadow: calc(var(--shadow-offset) * 1.5) calc(var(--shadow-offset) * 1.5) 0 var(--solid-black);
}

.card-elevated:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) * 2) calc(var(--shadow-offset) * 2) 0 var(--solid-black);
}

.card-dark {
  background: var(--primary-dark);
  color: var(--pure-white);
  border: var(--border-width) solid var(--solid-black);
}

.card-outline {
  background: transparent;
  border: var(--border-width) solid var(--solid-black);
  color: var(--text-primary);
}

/* Bold Typography Cards */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.card-dark p {
  color: #d1d5db;
}

/* Neo-Brutalism Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: var(--border-width) solid var(--solid-black);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  background: var(--pure-white);
  color: var(--text-primary);
}

.btn-primary {
  background: var(--primary-green);
  color: var(--pure-white);
  border: var(--border-width) solid var(--solid-black);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--solid-black);
}

.btn-primary:hover {
  background: #16a34a;
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--solid-black);
  text-decoration: none;
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--solid-black);
}

.btn-secondary {
  background: var(--primary-dark);
  color: var(--pure-white);
  border: var(--border-width) solid var(--solid-black);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--solid-black);
}

.btn-secondary:hover {
  background: #374151;
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--solid-black);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: var(--border-width) solid var(--primary-green);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--pure-white);
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--primary-green);
  text-decoration: none;
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header Styling */
.header {
  background: var(--pure-white);
  border-bottom: var(--border-width) solid var(--solid-black);
  padding: 1.5rem 0;
  position: relative;
  z-index: 100;
}

.header-dark {
  background: var(--primary-dark);
  color: var(--pure-white);
}

.header-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
}

.header-dark .header-title {
  color: var(--pure-white);
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border: var(--border-width) solid transparent;
  transition: all var(--transition-speed) ease;
}

.header-dark .header-nav a {
  color: var(--pure-white);
}

.header-nav a:hover {
  background: var(--light-gray);
  border: var(--border-width) solid var(--solid-black);
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--solid-black);
}

/* Footer Styling */
.footer {
  background: var(--primary-dark);
  color: var(--pure-white);
  padding: 3rem 0;
  border-top: var(--border-width) solid var(--solid-black);
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  color: var(--pure-white);
}

.footer a {
  color: var(--primary-green);
  font-weight: 500;
}

.footer a:hover {
  color: #86efac;
  text-decoration: underline;
}

/* Form Elements with Neo-Brutalism */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: var(--border-width) solid var(--solid-black);
  border-radius: var(--border-radius);
  background: var(--pure-white);
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border: var(--border-width) solid var(--primary-green);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary-green);
  transform: translate(-2px, -2px);
}

.form-control:hover {
  border: var(--border-width) solid var(--primary-green);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

/* Grid System Enhancements */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  padding: 0 1rem;
  flex: 1;
}

.col-12 { flex: 0 0 100%; }
.col-6 { flex: 0 0 50%; }
.col-4 { flex: 0 0 33.333%; }
.col-3 { flex: 0 0 25%; }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

/* Alert Components */
.alert {
  padding: 1.5rem;
  border: var(--border-width) solid var(--solid-black);
  border-radius: var(--border-radius);
  margin: 1rem 0;
  font-weight: 500;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--solid-black);
}

.alert-success {
  background: #f0fdf4;
  border-color: var(--primary-green);
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #991b1b;
}

.alert-warning {
  background: #fffbeb;
  border-color: #d97706;
  color: #92400e;
}

.alert-info {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1e40af;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
  border-bottom: var(--border-width) solid var(--solid-black);
  background: var(--pure-white);
}

.hero-dark {
  background: var(--primary-dark);
  color: var(--pure-white);
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Badge Component */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: var(--border-width) solid var(--solid-black);
  border-radius: var(--border-radius);
  background: var(--primary-green);
  color: var(--pure-white);
  box-shadow: 2px 2px 0 var(--solid-black);
}

.badge-secondary {
  background: var(--light-gray);
  color: var(--text-primary);
}

.badge-outline {
  background: transparent;
  color: var(--primary-green);
  border: var(--border-width) solid var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .col-6, .col-4, .col-3 {
    flex: 0 0 100%;
  }
  
  .row {
    margin: 0;
  }
  
  .col {
    padding: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .card {
    padding: 1rem;
  }
}

/* Interactive States */
*:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

*:active {
  transform: translateY(1px);
}

/* Selection Styling */
::selection {
  background: var(--primary-green);
  color: var(--pure-white);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--pure-white);
}


/* 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;
    }
}