:root {
  --primary-blue: #3B82F6;
  --secondary-gray: #64748B;
  --background-white: #FFFFFF;
  --footer-dark: #1E293B;
  --button-blue: #2563EB;
  --section-light: #F8FAFC;
  --section-lighter: #F1F5F9;
  
  /* Soft & Organic Color Palette */
  --organic-cream: #FEF7ED;
  --organic-peach: #FED7AA;
  --organic-warm-blue: #DBEAFE;
  --organic-lavender: #EDE9FE;
  --organic-mint: #D1FAE5;
  
  /* Gradients */
  --gradient-organic-primary: linear-gradient(135deg, #FED7AA 0%, #DBEAFE 100%);
  --gradient-organic-secondary: linear-gradient(135deg, #EDE9FE 0%, #D1FAE5 100%);
  --gradient-button-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  --gradient-button-soft: linear-gradient(135deg, #FED7AA 0%, #FEF7ED 100%);
  
  /* Typography - Round and Friendly */
  --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Quicksand', 'Nunito', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius - Generous */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Soft Shadows */
  --shadow-soft-sm: 0 4px 20px -8px rgba(59, 130, 246, 0.15);
  --shadow-soft-md: 0 8px 30px -10px rgba(59, 130, 246, 0.2);
  --shadow-soft-lg: 0 12px 40px -10px rgba(59, 130, 246, 0.25);
  --shadow-organic: 0 10px 30px -10px rgba(254, 215, 170, 0.3);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--background-white);
  color: #1F2937;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--space-md) 0;
  color: #111827;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  margin: 0 0 var(--space-md) 0;
  color: #4B5563;
  font-size: 1.1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--button-blue);
  text-decoration: underline;
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-lg);
}

/* Section Backgrounds - Organic Approach */
.section-light {
  background: var(--section-light);
}

.section-lighter {
  background: var(--section-lighter);
}

.section-organic-1 {
  background: var(--organic-cream);
}

.section-organic-2 {
  background: var(--organic-warm-blue);
}

.section-organic-3 {
  background: var(--gradient-organic-secondary);
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.nav-menu a {
  font-weight: 500;
  color: #374151;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background: var(--organic-warm-blue);
  color: var(--primary-blue);
  text-decoration: none;
}

/* Button Styles - Soft & Organic */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-button-primary);
  color: white;
  box-shadow: var(--shadow-soft-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: var(--gradient-button-soft);
  color: var(--button-blue);
  border: 2px solid rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-organic);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--gradient-organic-primary);
  color: var(--primary-blue);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-soft-sm);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Card Styles - Soft & Organic */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-organic-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-lg);
}

.card:hover::before {
  opacity: 1;
}

.card-organic {
  background: var(--gradient-organic-secondary);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.card-organic .card-header {
  background: rgba(255, 255, 255, 0.7);
  margin: calc(-1 * var(--space-xl)) calc(-1 * var(--space-xl)) var(--space-md) calc(-1 * var(--space-xl));
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.card-header {
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: var(--space-xs);
}

.card-subtitle {
  color: var(--secondary-gray);
  font-size: 1rem;
  margin-bottom: 0;
}

.card-body {
  margin-bottom: var(--space-md);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.hero {
  background: var(--gradient-organic-primary);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(254, 215, 170, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-gray);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: #374151;
}

.form-control {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
  color: #9CA3AF;
}

/* Footer Styles */
.footer {
  background: var(--footer-dark);
  color: white;
  padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #D1D5DB;
  margin-bottom: var(--space-xs);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: var(--space-lg);
  text-align: center;
  color: #9CA3AF;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.py-sm { padding: var(--space-sm) 0; }
.py-md { padding: var(--space-md) 0; }
.py-lg { padding: var(--space-lg) 0; }
.py-xl { padding: var(--space-xl) 0; }

.px-sm { padding: 0 var(--space-sm); }
.px-md { padding: 0 var(--space-md); }
.px-lg { padding: 0 var(--space-lg); }

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-gray); }
.text-dark { color: #111827; }
.text-light { color: #6B7280; }

.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-gray); }
.bg-light { background-color: var(--section-light); }

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .card {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Selection Styles */
::selection {
  background: var(--organic-warm-blue);
  color: var(--primary-blue);
}

::-moz-selection {
  background: var(--organic-warm-blue);
  color: var(--primary-blue);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--section-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-organic-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 2s ease-in-out infinite;
}

/* Hover Animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.img-rounded {
  border-radius: var(--radius-lg);
}

.img-circle {
  border-radius: 50%;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--gradient-organic-primary);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.badge:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Alert Styles */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid;
}

.alert-info {
  background: var(--organic-warm-blue);
  border-color: var(--primary-blue);
  color: #1E40AF;
}

.alert-success {
  background: var(--organic-mint);
  border-color: #10B981;
  color: #047857;
}

.alert-warning {
  background: var(--organic-peach);
  border-color: #F59E0B;
  color: #B45309;
}

.alert-error {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #DC2626;
}


/* 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;
    }
}