:root {
  --primary-color: #3B82F6;
  --secondary-color: #10B981;
  --background-color: #FFFFFF;
  --footer-bg-color: #1F2937;
  --button-color: #3B82F6;
  --section-bg-colors: #F8FAFC, #FFFFFF, #F0FDF4;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --shadow-offset: 4px 4px;
  --border-width: 2px;
  --border-color: #000000;
  --border-radius-sharp: 0px;
  --border-radius-soft: 4px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-color);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

html {
  width: 100%;
  height: 100%;
}

.container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  border-bottom: var(--border-width) solid var(--border-color);
  padding-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--button-color);
  color: white;
  box-shadow: var(--shadow-offset) 0 #000000;
}

.btn-primary:hover {
  background-color: #2563EB;
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 #000000;
  transform: translate(-2px, -2px);
}

.btn-primary:active {
  box-shadow: var(--shadow-offset) 0 #000000;
  transform: translate(0, 0);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-offset) 0 #000000;
}

.btn-secondary:hover {
  background-color: #059669;
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 #000000;
  transform: translate(-2px, -2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: var(--shadow-offset) 0 var(--border-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 #000000;
  transform: translate(-2px, -2px);
}

.card {
  background-color: #FFFFFF;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-offset) 0 #000000;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 #000000;
  transform: translate(-2px, -2px);
}

.section {
  padding: 4rem 0;
  width: 100%;
}

.section-alt {
  background-color: #F8FAFC;
}

.section-hero {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.header {
  background-color: var(--background-color);
  border-bottom: var(--border-width) solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  text-decoration: none;
  border: var(--border-width) solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-soft);
  background-color: white;
  box-shadow: var(--shadow-offset) 0 #000000;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border: var(--border-width) solid transparent;
  border-radius: var(--border-radius-soft);
  transition: all 0.2s ease;
}

.nav-link:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--border-color);
  box-shadow: var(--shadow-offset) 0 #000000;
  transform: translate(-2px, -2px);
}

.footer {
  background-color: var(--footer-bg-color);
  color: white;
  padding: 3rem 0 2rem 0;
  border-top: var(--border-width) solid var(--border-color);
}

.footer-content {
  padding: 0 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  border-bottom: var(--border-width) solid white;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-link {
  color: #D1D5DB;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  font-weight: 600;
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.hero-content {
  text-align: center;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 2rem;
  padding: 0 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background-color: white;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-offset) 0 #000000;
  transition: all 0.2s ease;
}

.feature-card:hover {
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 #000000;
  transform: translate(-2px, -2px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-offset) 0 #000000;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  font-size: 1rem;
  font-weight: 600;
  background-color: white;
  box-shadow: inset 2px 2px 0 #F3F4F6;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: inset 2px 2px 0 #F3F4F6, 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.alert {
  padding: 1rem 1.5rem;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  margin-bottom: 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-offset) 0 #000000;
}

.alert-success {
  background-color: var(--secondary-color);
  color: white;
  border-color: #000000;
}

.alert-error {
  background-color: #EF4444;
  color: white;
  border-color: #000000;
}

.alert-warning {
  background-color: #F59E0B;
  color: white;
  border-color: #000000;
}

.alert-info {
  background-color: var(--primary-color);
  color: white;
  border-color: #000000;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-offset) 0 #000000;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.badge-outline {
  background-color: transparent;
  color: var(--primary-color);
}

.divider {
  height: var(--border-width);
  background-color: var(--border-color);
  margin: 2rem 0;
  border: none;
}

.spacer {
  height: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .card,
  .feature-card {
    padding: 1.5rem;
  }
  
  .grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .card,
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  
  .logo {
    font-size: 1.25rem;
    padding: 0.375rem 0.75rem;
  }
  
  .nav-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !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;
    }
}