:root {
  /* Business theme colors */
  --primary: #4338ca;
  --primary-focus: #3730a3;
  --primary-content: #ffffff;
  --secondary: #1d4ed8;
  --secondary-focus: #1e40af;
  --secondary-content: #ffffff;
  --accent: #0ea5e9;
  --accent-focus: #0284c7;
  --accent-content: #ffffff;
  --neutral: #1f2937;
  --neutral-focus: #111827;
  --neutral-content: #ffffff;
  --base-100: #ffffff;
  --base-200: #f9fafb;
  --base-300: #d1d5db;
  --base-content: #1f2937;
  --info: #0ea5e9;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Sizing and spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-24: 6rem;
  --spacing-36: 9rem;
  --spacing-48: 12rem;
  
  /* Border radius */
  --radius-sm: 0.125rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Typography */
  --font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Basic Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-family);
  color: var(--base-content);
  background-color: var(--base-100);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, .text-5xl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

h2, .text-4xl {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
}

h3, .text-3xl {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
}

h4, .text-2xl {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h5, .text-xl {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-black {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Layout Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--spacing-2);
}

.gap-4 {
  gap: var(--spacing-4);
}

.gap-8 {
  gap: var(--spacing-8);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-auto {
  margin-top: auto;
}

.mt-2 {
  margin-top: var(--spacing-2);
}

.mt-4 {
  margin-top: var(--spacing-4);
}

.mt-12 {
  margin-top: var(--spacing-12);
}

.mr-2 {
  margin-right: var(--spacing-2);
}

.mb-1 {
  margin-bottom: var(--spacing-1);
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.mb-5 {
  margin-bottom: var(--spacing-5);
}

.mb-6 {
  margin-bottom: var(--spacing-6);
}

.mb-10 {
  margin-bottom: var(--spacing-10);
}

.py-4 {
  padding-top: var(--spacing-4);
  padding-bottom: var(--spacing-4);
}

.py-6 {
  padding-top: var(--spacing-6);
  padding-bottom: var(--spacing-6);
}

.py-8 {
  padding-top: var(--spacing-8);
  padding-bottom: var(--spacing-8);
}

.py-12 {
  padding-top: var(--spacing-12);
  padding-bottom: var(--spacing-12);
}

.px-1 {
  padding-left: var(--spacing-1);
  padding-right: var(--spacing-1);
}

.px-4 {
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
}

.px-6 {
  padding-left: var(--spacing-6);
  padding-right: var(--spacing-6);
}

.pt-6 {
  padding-top: var(--spacing-6);
}

.p-2 {
  padding: var(--spacing-2);
}

.p-4 {
  padding: var(--spacing-4);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-32 {
  height: 8rem;
}

.w-40 {
  width: 10rem;
}

.h-40 {
  height: 10rem;
}

.w-48 {
  width: 12rem;
}

.h-48 {
  height: 12rem;
}

.w-64 {
  width: 16rem;
}

.h-64 {
  height: 16rem;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.object-cover {
  object-fit: cover;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--base-100);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.menu {
  display: flex;
  gap: 0.25rem;
}

.menu-horizontal {
  flex-direction: row;
}

.menu a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--base-content);
  border-radius: var(--radius-md);
}

.menu a:hover {
  background-color: var(--base-200);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  background-color: transparent;
  color: var(--base-content);
}

.btn-ghost:hover {
  background-color: var(--base-200);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-content);
}

.btn-primary:hover {
  background-color: var(--primary-focus);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-content);
}

.btn-secondary:hover {
  background-color: var(--secondary-focus);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-content);
}

.btn-accent:hover {
  background-color: var(--accent-focus);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.bg-opacity-60 {
  opacity: 0.6;
}

.text-neutral-content {
  color: white;
}

/* Cards */
.card {
  background-color: var(--base-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover.hover\:shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-actions {
  margin-top: var(--spacing-4);
  display: flex;
  justify-content: center;
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: var(--radius-full);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  background-color: var(--neutral);
  color: var(--neutral-content);
}

.badge-outline {
  background-color: transparent;
  border: 1px solid currentColor;
  color: var(--base-content);
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-content);
}

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-content);
}

.badge-accent {
  background-color: var(--accent);
  color: var(--accent-content);
}

.badge-info {
  background-color: var(--info);
  color: white;
}

.badge-success {
  background-color: var(--success);
  color: white;
}

.badge-warning {
  background-color: var(--warning);
  color: white;
}

/* Form Elements */
.input, .textarea, .select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background-color: var(--base-100);
  border: 1px solid var(--base-300);
  border-radius: var(--radius-md);
  color: var(--base-content);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus, .textarea:focus, .select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 56, 202, 0.2);
}

.input-bordered, .textarea-bordered, .select-bordered {
  border: 1px solid var(--base-300);
}

.textarea {
  resize: vertical;
}

.h-32 {
  height: 8rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--base-300);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-vertical {
  display: flex;
  flex-direction: column;
}

.timeline-middle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--base-100);
  border-radius: 50%;
  margin: 0 auto;
}

.timeline-start, .timeline-end {
  position: relative;
  width: 50%;
  padding: 1rem;
}

.timeline-start {
  align-self: flex-start;
  text-align: right;
  padding-right: 2.5rem;
}

.timeline-end {
  align-self: flex-end;
  text-align: left;
  padding-left: 2.5rem;
}

hr {
  height: 1px;
  background-color: var(--base-300);
  border: none;
  margin: 1rem 0;
}

/* Footer */
.footer {
  background-color: var(--base-300);
  color: var(--base-content);
  padding: var(--spacing-4);
  margin-top: auto;
}

.footer-center {
  text-align: center;
}

/* Background utility classes */
.bg-base-100 {
  background-color: var(--base-100);
}

.bg-base-200 {
  background-color: var(--base-200);
}

.bg-base-300 {
  background-color: var(--base-300);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-primary\/10 {
  background-color: rgba(67, 56, 202, 0.1);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-secondary\/10 {
  background-color: rgba(29, 78, 216, 0.1);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-accent\/10 {
  background-color: rgba(14, 165, 233, 0.1);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

/* Hover effects */
.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transform utility */
.transform {
  transform: translateZ(0);
}

.-translate-y-36 {
  transform: translateY(-9rem);
}

/* Media Queries */
@media (min-width: 640px) {
  .sm\:footer-horizontal {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:text-end {
    text-align: end;
  }
  
  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }
  
  .max-md\:timeline-compact .timeline-start,
  .max-md\:timeline-compact .timeline-end {
    width: 80%;
    text-align: left;
    padding-left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:ml-8 {
    margin-left: 2rem;
  }
}