
    /* Base Styles */
    body {
      font-family: 'Inter', Helvetica, Arial, sans-serif;
      scroll-behavior: smooth;
    }
    
    /* Form Focus States */
    .form-input:focus {
      @apply ring-2 ring-primary/40 border-primary outline-none;
    }
    
    /* Map Container */
    .map-container {
      height: 100%;
      min-height: 320px;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    
    /* Animation Effects */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate-fade-in-up {
      animation: fadeInUp 0.5s ease-out forwards;
    }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
  