:root {
  /* Color Palette - Soft & Organic Interpretation */
  --primary-color: #2c3e50;
  --primary-light: #3498db;
  --secondary-color: #34495e;
  --accent-color: #16a085;
  --background-color: #ffffff;
  --footer-bg: #1a252f;
  --text-color: #2c3e50;
  --text-light: #7f8c8d;
  --section-bg-light: #f8f9fa;
  --section-bg-medium: #ecf0f1;
  
  /* Soft Gradients */
  --primary-gradient: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  --accent-gradient: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
  --soft-gradient: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  
  /* Typography Scale */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-round: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Soft Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Soft Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Soft Shadow System */
  --shadow-soft-sm: 0 4px 20px -8px rgba(44, 62, 80, 0.15);
  --shadow-soft-md: 0 8px 30px -12px rgba(44, 62, 80, 0.2);
  --shadow-soft-lg: 0 12px 40px -16px rgba(44, 62, 80, 0.25);
  --shadow-soft-xl: 0 20px 60px -20px rgba(44, 62, 80, 0.3);
  --shadow-soft-2xl: 0 25px 80px -25px rgba(44, 62, 80, 0.35);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-round);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--space-6) 0;
  color: var(--primary-color);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: 500;
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: 500;
}

p {
  margin: 0 0 var(--space-6) 0;
  color: var(--text-color);
}

.text-light {
  color: var(--text-light) !important;
}

/* Link Styles */
a {
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

/* Section Background Variants */
.section-bg-light {
  background-color: var(--section-bg-light);
}

.section-bg-medium {
  background-color: var(--section-bg-medium);
}

/* Soft Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-family-round);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: var(--space-2);
  box-shadow: var(--shadow-soft-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-md);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft-sm);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2980b9 0%, #2c3e50 100%);
  color: white;
}

.btn-accent {
  background: var(--accent-gradient);
  color: white;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-lg);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-2xl);
}

/* Soft Cards */
.card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-soft-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 62, 80, 0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.card-header {
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  margin-bottom: var(--space-6);
}

.card-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.card-text {
  color: var(--text-light);
  line-height: 1.7;
}

.card-footer {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  margin-top: var(--space-6);
}

/* Card Variants */
.card-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-accent {
  background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
  color: white;
}

.card-accent .card-title {
  color: white;
}

.card-accent .card-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--space-3);
  font-family: var(--font-family-round);
}

.form-control {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 2px solid rgba(44, 62, 80, 0.15);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  background: white;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}

/* Select and Textarea */
select.form-control,
textarea.form-control {
  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='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--space-4) center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-right: var(--space-12);
  appearance: none;
}

/* Header Styles */
.header {
  background: white;
  box-shadow: var(--shadow-soft-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}

.logo {
  font-family: var(--font-family-round);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.nav a:hover {
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 50%, #ffffff 100%);
  padding: var(--space-24) 0;
  text-align: center;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-light);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  padding: var(--space-20) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.feature-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--accent-gradient);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: white;
}

.feature-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
}

.feature-text {
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-6);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: var(--space-3);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.p-0 { padding: 0; }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .nav {
    gap: var(--space-4);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: var(--space-6);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav a:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* Smooth Animations */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* 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;
    }
}