/* CSS Custom Properties - Color Variables */
:root {
  /* Base colors */
  --color-base: #ffffff;
  --color-base-50: #f9fafb;
  --color-base-100: #f3f4f6;
  --color-base-200: #e5e7eb;
  --color-base-300: #d1d5db;
  --color-base-400: #9ca3af;
  --color-base-500: #6b7280;
  --color-base-600: #4b5563;
  --color-base-700: #374151;
  --color-base-800: #1f2937;
  --color-base-900: #111827;
  --color-base-content: #1f2937;
  /* Primary colors */
  --color-primary: #3b82f6;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;
  --color-primary-focus: #2563eb;
  --color-primary-content: #ffffff;
  /* Secondary colors */
  --color-secondary: #8b5cf6;
  --color-secondary-50: #f5f3ff;
  --color-secondary-100: #ede9fe;
  --color-secondary-200: #ddd6fe;
  --color-secondary-300: #c4b5fd;
  --color-secondary-400: #a78bfa;
  --color-secondary-500: #8b5cf6;
  --color-secondary-600: #7c3aed;
  --color-secondary-700: #6d28d9;
  --color-secondary-800: #5b21b6;
  --color-secondary-900: #4c1d95;
  --color-secondary-focus: #7c3aed;
  --color-secondary-content: #ffffff;
  /* Accent colors */
  --color-accent: #f472b6;
  --color-accent-50: #fdf2f8;
  --color-accent-100: #fce7f3;
  --color-accent-200: #fbcfe8;
  --color-accent-300: #f9a8d4;
  --color-accent-400: #f472b6;
  --color-accent-500: #ec4899;
  --color-accent-600: #db2777;
  --color-accent-700: #be185d;
  --color-accent-800: #9d174d;
  --color-accent-900: #831843;
  --color-accent-focus: #db2777;
  --color-accent-content: #ffffff;
  /* Neutral colors */
  --color-neutral: #6b7280;
  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #4b5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1f2937;
  --color-neutral-900: #111827;
  --color-neutral-focus: #4b5563;
  --color-neutral-content: #ffffff;
  /* Info colors */
  --color-info: #3b82f6;
  --color-info-50: #eff6ff;
  --color-info-100: #dbeafe;
  --color-info-200: #bfdbfe;
  --color-info-300: #93c5fd;
  --color-info-400: #60a5fa;
  --color-info-500: #3b82f6;
  --color-info-600: #2563eb;
  --color-info-700: #1d4ed8;
  --color-info-800: #1e40af;
  --color-info-900: #1e3a8a;
  --color-info-focus: #2563eb;
  --color-info-content: #ffffff;
  /* Success colors */
  --color-success: #10b981;
  --color-success-50: #ecfdf5;
  --color-success-100: #d1fae5;
  --color-success-200: #a7f3d0;
  --color-success-300: #6ee7b7;
  --color-success-400: #34d399;
  --color-success-500: #10b981;
  --color-success-600: #059669;
  --color-success-700: #047857;
  --color-success-800: #065f46;
  --color-success-900: #064e3b;
  --color-success-focus: #059669;
  --color-success-content: #ffffff;
  /* Warning colors */
  --color-warning: #f59e0b;
  --color-warning-50: #fffbeb;
  --color-warning-100: #fef3c7;
  --color-warning-200: #fde68a;
  --color-warning-300: #fcd34d;
  --color-warning-400: #fbbf24;
  --color-warning-500: #f59e0b;
  --color-warning-600: #d97706;
  --color-warning-700: #b45309;
  --color-warning-800: #92400e;
  --color-warning-900: #78350f;
  --color-warning-focus: #d97706;
  --color-warning-content: #ffffff;
  /* Error colors */
  --color-error: #ef4444;
  --color-error-50: #fef2f2;
  --color-error-100: #fee2e2;
  --color-error-200: #fecaca;
  --color-error-300: #fca5a5;
  --color-error-400: #f87171;
  --color-error-500: #ef4444;
  --color-error-600: #dc2626;
  --color-error-700: #b91c1c;
  --color-error-800: #991b1b;
  --color-error-900: #7f1d1d;
  --color-error-focus: #dc2626;
  --color-error-content: #ffffff; }

/* Dark theme */
.dark {
  /* Base colors */
  --color-base: #1f2937;
  --color-base-50: #111827;
  --color-base-100: #1f2937;
  --color-base-200: #374151;
  --color-base-300: #4b5563;
  --color-base-400: #6b7280;
  --color-base-500: #9ca3af;
  --color-base-600: #d1d5db;
  --color-base-700: #e5e7eb;
  --color-base-800: #f3f4f6;
  --color-base-900: #f9fafb;
  --color-base-content: #f9fafb;
  /* Primary colors */
  --color-primary: #60a5fa;
  --color-primary-50: #1e3a8a;
  --color-primary-100: #1e40af;
  --color-primary-200: #1d4ed8;
  --color-primary-300: #2563eb;
  --color-primary-400: #3b82f6;
  --color-primary-500: #60a5fa;
  --color-primary-600: #93c5fd;
  --color-primary-700: #bfdbfe;
  --color-primary-800: #dbeafe;
  --color-primary-900: #eff6ff;
  --color-primary-focus: #3b82f6;
  --color-primary-content: #1f2937;
  /* Secondary colors */
  --color-secondary: #a78bfa;
  --color-secondary-50: #4c1d95;
  --color-secondary-100: #5b21b6;
  --color-secondary-200: #6d28d9;
  --color-secondary-300: #7c3aed;
  --color-secondary-400: #8b5cf6;
  --color-secondary-500: #a78bfa;
  --color-secondary-600: #c4b5fd;
  --color-secondary-700: #ddd6fe;
  --color-secondary-800: #ede9fe;
  --color-secondary-900: #f5f3ff;
  --color-secondary-focus: #8b5cf6;
  --color-secondary-content: #1f2937;
  /* Accent colors */
  --color-accent: #f472b6;
  --color-accent-50: #831843;
  --color-accent-100: #9d174d;
  --color-accent-200: #be185d;
  --color-accent-300: #db2777;
  --color-accent-400: #ec4899;
  --color-accent-500: #f472b6;
  --color-accent-600: #f9a8d4;
  --color-accent-700: #fbcfe8;
  --color-accent-800: #fce7f3;
  --color-accent-900: #fdf2f8;
  --color-accent-focus: #ec4899;
  --color-accent-content: #1f2937;
  /* Info colors */
  --color-info: #60a5fa;
  --color-info-50: #1e3a8a;
  --color-info-100: #1e40af;
  --color-info-200: #1d4ed8;
  --color-info-300: #2563eb;
  --color-info-400: #3b82f6;
  --color-info-500: #60a5fa;
  --color-info-600: #93c5fd;
  --color-info-700: #bfdbfe;
  --color-info-800: #dbeafe;
  --color-info-900: #eff6ff;
  --color-info-focus: #3b82f6;
  --color-info-content: #1f2937;
  /* Success colors */
  --color-success: #34d399;
  --color-success-50: #064e3b;
  --color-success-100: #065f46;
  --color-success-200: #047857;
  --color-success-300: #059669;
  --color-success-400: #10b981;
  --color-success-500: #34d399;
  --color-success-600: #6ee7b7;
  --color-success-700: #a7f3d0;
  --color-success-800: #d1fae5;
  --color-success-900: #ecfdf5;
  --color-success-focus: #10b981;
  --color-success-content: #1f2937;
  /* Warning colors */
  --color-warning: #fbbf24;
  --color-warning-50: #78350f;
  --color-warning-100: #92400e;
  --color-warning-200: #b45309;
  --color-warning-300: #d97706;
  --color-warning-400: #f59e0b;
  --color-warning-500: #fbbf24;
  --color-warning-600: #fcd34d;
  --color-warning-700: #fde68a;
  --color-warning-800: #fef3c7;
  --color-warning-900: #fffbeb;
  --color-warning-focus: #f59e0b;
  --color-warning-content: #1f2937;
  /* Error colors */
  --color-error: #f87171;
  --color-error-50: #7f1d1d;
  --color-error-100: #991b1b;
  --color-error-200: #b91c1c;
  --color-error-300: #dc2626;
  --color-error-400: #ef4444;
  --color-error-500: #f87171;
  --color-error-600: #fca5a5;
  --color-error-700: #fecaca;
  --color-error-800: #fee2e2;
  --color-error-900: #fef2f2;
  --color-error-focus: #ef4444;
  --color-error-content: #1f2937; }

/* Base Styles */
/* Global font family */
* {
  font-family: 'Inter', sans-serif !important; }

/* Scrollbar styles */
::-webkit-scrollbar {
  display: none; }

html, body {
  -ms-overflow-style: none;
  scrollbar-width: none; }

/* Component Styles */
/* Highlighted section for editing */
.highlighted-section {
  outline: 2px solid #3F20FB;
  background-color: rgba(63, 32, 251, 0.1); }

/* Edit button positioning */
.edit-button {
  position: absolute;
  z-index: 1000; }

/* FAQ accordion styles */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: white; }

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s; }

.faq-button:hover {
  background-color: #f9fafb; }

.faq-content {
  padding: 1rem;
  padding-top: 0;
  color: #6b7280;
  display: none; }

.faq-content.active {
  display: block; }

.faq-icon {
  color: #f1680e;
  transition: transform 0.2s; }

.faq-icon.rotated {
  transform: rotate(180deg); }

/* Service card styles */
.service-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  cursor: pointer; }

.service-card:hover {
  background-color: #f9fafb; }

.service-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0; }

.service-text {
  color: #1f2937;
  font-size: 0.875rem;
  line-height: 1.25; }

/* How it works step cards */
.step-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  height: 280px; }

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f1680e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem; }

.step-icon i {
  color: white;
  font-size: 1.25rem; }

.step-title {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 0.5rem; }

.step-description {
  color: #6b7280;
  flex: 1; }

/* Info section styles */
.info-section {
  padding: 4rem 0; }

.info-content {
  display: flex;
  align-items: center;
  gap: 3rem; }

.info-text {
  flex: 1; }

.info-image {
  flex: 1;
  height: 24rem;
  background-color: #6b7280;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem; }

.info-title {
  font-size: 1.875rem;
  color: #000000;
  margin-bottom: 1.5rem; }

.info-description {
  color: #6b7280;
  margin-bottom: 1rem; }

.info-description:last-of-type {
  margin-bottom: 1.5rem; }

/* Button styles */
.btn-primary {
  background-color: #f1680e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block; }

.btn-primary:hover {
  background-color: #d55a0c; }

.btn-outline {
  border: 1px solid #f1680e;
  color: #f1680e;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block; }

.btn-outline:hover {
  background-color: #f1680e;
  color: white; }

/* Layout Styles */
/* Header */
.header {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  position: relative; }

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem; }

@media (min-width: 640px) {
  .header-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem; } }
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem; }

.header-logo {
  flex-shrink: 0; }

.header-logo-text {
  font-size: 1.5rem;
  color: #000000; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem; }

.nav-item {
  color: #374151;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s; }

.nav-item:hover {
  color: #000000; }

/* Dropdown menu */
.dropdown {
  position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 56.25rem;
  background-color: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 50;
  margin-top: 0.5rem; }

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible; }

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem; }

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s; }

.dropdown-item:hover {
  color: #000000;
  background-color: #f9fafb; }

.dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem; }

.dropdown-text {
  line-height: 1.25; }

/* Hero section */
.hero {
  position: relative;
  height: 37.5rem;
  background-color: #1f2937; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: #4b5563; }

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; }

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%; }

@media (min-width: 640px) {
  .hero-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .hero-container {
    padding: 0 2rem; } }
.hero-form {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem; }

.hero-form-content {
  display: flex;
  align-items: center;
  gap: 1rem; }

.hero-input {
  flex: 1; }

.hero-input input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s; }

.hero-input input:focus {
  outline: none;
  ring: 2px;
  ring-color: #f1680e;
  border-color: transparent; }

.hero-select {
  flex: 1; }

.hero-select select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s; }

.hero-select select:focus {
  outline: none;
  ring: 2px;
  ring-color: #f1680e;
  border-color: transparent; }

.hero-button {
  background-color: #f1680e;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.hero-button:hover {
  background-color: #d55a0c; }

.hero-button i {
  margin-right: 0.5rem; }

/* Main content section */
.main-content {
  padding: 4rem 0;
  background-color: white; }

.main-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem; }

@media (min-width: 640px) {
  .main-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .main-container {
    padding: 0 2rem; } }
.main-layout {
  display: flex;
  gap: 2rem; }

.services-sidebar {
  width: 25%; }

.services-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

.main-content-area {
  width: 75%; }

.how-it-works-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  height: 17.5rem; }

.steps-button-container {
  text-align: center; }

/* Info sections */
.info-section {
  padding: 4rem 0; }

.info-section-alt {
  background-color: #f9fafb; }

.info-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem; }

@media (min-width: 640px) {
  .info-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .info-container {
    padding: 0 2rem; } }
.info-layout {
  display: flex;
  align-items: center;
  gap: 3rem; }

.info-text-content {
  flex: 1; }

.info-image-content {
  flex: 1;
  height: 24rem;
  background-color: #6b7280;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem; }

.info-title {
  font-size: 1.875rem;
  color: #000000;
  margin-bottom: 1.5rem; }

.info-description {
  color: #6b7280;
  margin-bottom: 1rem; }

.info-description:last-of-type {
  margin-bottom: 1.5rem; }

/* FAQ section */
.faq-section {
  padding: 4rem 0;
  background-color: #f9fafb; }

.faq-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem; }

@media (min-width: 640px) {
  .faq-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .faq-container {
    padding: 0 2rem; } }
.faq-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; }

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0; }

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem; }

@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; }

.footer-section-title {
  font-size: 1.125rem;
  margin-bottom: 1rem; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem; }

.footer-contact-item {
  color: #d1d5db;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; }

.footer-contact-item i {
  margin-right: 0.5rem;
  margin-top: 0.125rem; }

.footer-button {
  background-color: #f1680e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%; }

.footer-button:hover {
  background-color: #d55a0c; }

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

.footer-list-item {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.2s; }

.footer-list-item:hover {
  color: white; }

.footer-cities {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5; }

.footer-divider {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center; }

.footer-copyright {
  color: #9ca3af; }

/* Utility Classes */
/* Text utilities */
.text-center {
  text-align: center; }

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

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

/* Color utilities */
.text-primary {
  color: #f1680e; }

.text-secondary {
  color: #6b7280; }

.text-white {
  color: white; }

.text-black {
  color: #000000; }

.text-neutral-300 {
  color: #d1d5db; }

.text-neutral-600 {
  color: #6b7280; }

.text-neutral-700 {
  color: #374151; }

.text-neutral-800 {
  color: #1f2937; }

/* Background utilities */
.bg-white {
  background-color: white; }

.bg-neutral-50 {
  background-color: #f9fafb; }

.bg-neutral-600 {
  background-color: #6b7280; }

.bg-neutral-800 {
  background-color: #1f2937; }

.bg-neutral-900 {
  background-color: #111827; }

.bg-primary {
  background-color: #f1680e; }

.bg-primary-hover:hover {
  background-color: #d55a0c; }

/* Border utilities */
.border {
  border: 1px solid #e5e7eb; }

.border-neutral-200 {
  border-color: #e5e7eb; }

.border-neutral-700 {
  border-color: #374151; }

.border-t {
  border-top: 1px solid #374151; }

.border-b {
  border-bottom: 1px solid #e5e7eb; }

/* Border radius utilities */
.rounded {
  border-radius: 0.25rem; }

.rounded-md {
  border-radius: 0.375rem; }

.rounded-lg {
  border-radius: 0.5rem; }

.rounded-full {
  border-radius: 50%; }

/* Spacing utilities */
.p-2 {
  padding: 0.5rem; }

.p-3 {
  padding: 0.75rem; }

.p-4 {
  padding: 1rem; }

.p-6 {
  padding: 1.5rem; }

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem; }

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem; }

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem; }

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.pt-0 {
  padding-top: 0; }

.pt-8 {
  padding-top: 2rem; }

.mb-2 {
  margin-bottom: 0.5rem; }

.mb-4 {
  margin-bottom: 1rem; }

.mb-6 {
  margin-bottom: 1.5rem; }

.mb-8 {
  margin-bottom: 2rem; }

.mt-2 {
  margin-top: 0.5rem; }

.mt-8 {
  margin-top: 2rem; }

.mr-2 {
  margin-right: 0.5rem; }

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

/* Display utilities */
.flex {
  display: flex; }

.inline-flex {
  display: inline-flex; }

.grid {
  display: grid; }

.hidden {
  display: none; }

.block {
  display: block; }

/* Flex utilities */
.flex-col {
  flex-direction: column; }

.flex-1 {
  flex: 1; }

.flex-shrink-0 {
  flex-shrink: 0; }

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

.items-start {
  align-items: flex-start; }

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

.justify-between {
  justify-content: space-between; }

.space-x-2 > * + * {
  margin-left: 0.5rem; }

.space-x-3 > * + * {
  margin-left: 0.75rem; }

.space-x-4 > * + * {
  margin-left: 1rem; }

.space-y-2 > * + * {
  margin-top: 0.5rem; }

.space-y-3 > * + * {
  margin-top: 0.75rem; }

.space-y-4 > * + * {
  margin-top: 1rem; }

/* Grid utilities */
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr); }

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

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

.gap-6 {
  gap: 1.5rem; }

.gap-8 {
  gap: 2rem; }

/* Position utilities */
.relative {
  position: relative; }

.absolute {
  position: absolute; }

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.top-full {
  top: 100%; }

.left-1\/2 {
  left: 50%; }

.transform {
  transform: translateX(-50%); }

.-translate-x-1\/2 {
  transform: translateX(-50%); }

.z-10 {
  z-index: 10; }

.z-50 {
  z-index: 50; }

.z-1000 {
  z-index: 1000; }

/* Size utilities */
.w-full {
  width: 100%; }

.w-1\/2 {
  width: 50%; }

.w-1\/4 {
  width: 25%; }

.w-3\/4 {
  width: 75%; }

.w-5 {
  width: 1.25rem; }

.w-16 {
  width: 4rem; }

.h-5 {
  height: 1.25rem; }

.h-16 {
  height: 4rem; }

.h-96 {
  height: 24rem; }

.h-full {
  height: 100%; }

.max-w-7xl {
  max-width: 80rem; }

/* Font utilities */
.text-sm {
  font-size: 0.875rem; }

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

.text-xl {
  font-size: 1.25rem; }

.text-2xl {
  font-size: 1.5rem; }

.text-3xl {
  font-size: 1.875rem; }

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

.font-semibold {
  font-weight: 600; }

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

.leading-tight {
  line-height: 1.25; }

.leading-relaxed {
  line-height: 1.625; }

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer; }

/* Transition utilities */
.transition-all {
  transition: all 0.2s; }

.transition-transform {
  transition: transform 0.2s; }

.transition-colors {
  transition: color 0.2s, background-color 0.2s; }

/* Hover utilities */
.hover\:bg-neutral-50:hover {
  background-color: #f9fafb; }

.hover\:text-black:hover {
  color: #000000; }

.hover\:text-white:hover {
  color: white; }

.hover\:bg-primary:hover {
  background-color: #d55a0c; }

/* Focus utilities */
.focus\:ring-2:focus {
  ring: 2px; }

.focus\:ring-primary:focus {
  ring-color: #f1680e; }

.focus\:border-transparent:focus {
  border-color: transparent; }

/* Group hover utilities */
.group:hover .group-hover\:opacity-100 {
  opacity: 1; }

.group:hover .group-hover\:visible {
  visibility: visible; }

/* Opacity utilities */
.opacity-0 {
  opacity: 0; }

.opacity-100 {
  opacity: 1; }

/* Visibility utilities */
.invisible {
  visibility: hidden; }

.visible {
  visibility: visible; }

/* Shadow utilities */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Transform utilities */
.rotate-0 {
  transform: rotate(0deg); }

.rotate-180 {
  transform: rotate(180deg); }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem; } }
@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem; } }

/*# sourceMappingURL=app.css.map */
